13 lines
178 B
C#
13 lines
178 B
C#
using UnityEngine;
|
|
|
|
namespace Photon.Chat.UtilityScripts
|
|
{
|
|
public class OnStartDelete : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
Object.Destroy(base.gameObject);
|
|
}
|
|
}
|
|
}
|