DRHPS/code-csharp/en_US/DEBUG_RemoveOnStart.cs
2025-04-08 11:31:35 +08:00

10 lines
160 B
C#

using UnityEngine;
public class DEBUG_RemoveOnStart : MonoBehaviour
{
private void Awake()
{
Object.Destroy(base.gameObject);
}
}