/// <summary> /// The application entry point. /// </summary> /// <param name="args">The application args.</param> private static void Main(string[] args) { ITest test = new CreateTerrainTest(); ////ITest test = new DigTerrainTest(); while (true) { test.Update(); Thread.Sleep(1); } }
/// <summary> /// Initialises a new instance of the DigTerrainTest class. /// </summary> public DigTerrainTest() { var createTerrain = new CreateTerrainTest(); createTerrain.Update(); }