private void Awake() { if (instance != null) { Debug.LogError((object)"Multiple Combat systems present"); } instance = this; }
private void OnDestroy() { instance = null; }