void Awake() { _instance = this; _listOfAICharacters = new List <SteeringCharacter>(); _listOfObstacles = new List <Obstacle>(); _listOfWalls = new List <Wall>(); }
void OnDestroy() { _instance = null; }