10 lines
160 B
C#
10 lines
160 B
C#
using UnityEngine;
|
|
|
|
public class DEBUG_RemoveOnStart : MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
Object.Destroy(base.gameObject);
|
|
}
|
|
}
|