/// <summary> /// Stop the engine (this will destroy all the living cells) /// </summary> public void StopGame() { _world = null; }
/// <summary> /// Start the CoreEngine (this will create the initial population) /// </summary> public void StartGame() { _world = new World(); _world.Initialize(); }