Files
2026-02-21 16:45:37 +08:00

10 lines
130 B
C#

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