void Awake() { if (Instance == null) { Instance = this; } else if (Instance != this) { Destroy(gameObject); } }
// Use this for initialization void Start() { _sharedMemory = SharedMemory.Instance; _memory = GetComponent <Memory>(); _classFeatures = GetComponent <ClassFeatures>(); }