SANDBOX_LT / Scripts /Player.cs
Mufasakong's picture
Upload 18 files
c80142e verified
Raw
History Blame Contribute Delete
244 Bytes
using UnityEngine;
public class Player : MonoBehaviour
{
public static Player Instance;
void Awake()
{
if (Instance == null)
Instance = this;
else
Destroy(gameObject);
}
}