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);
}
}