Add source files

This commit is contained in:
2025-05-21 20:19:45 +02:00
parent 0f2a242b30
commit 71163fc589
284 changed files with 272526 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
using System;
using UnityEngine;
namespace MTE
{
// Token: 0x02000117 RID: 279
public class TileContainer : MonoBehaviour
{
// Token: 0x060016B0 RID: 5808 RVA: 0x001A059B File Offset: 0x0019E79B
public void OnEnable()
{
if (!Application.isEditor)
{
Object.Destroy(this);
}
}
}
}