void Awake() { if (instance == null) { instance = this; } else { Destroy(gameObject); } }
public void Awake() { Instance = this; }
private void Start() { killCount = GameObject.Find("ScoreManager").GetComponent <KillCountManager>(); }