//Where I want to run Robots V Dinosaurs /// <summary> /// This is where core of game logic will be held /// </summary> /// public Game() { Battlefield = new Battlefield(); }
static void Main(string[] args) { Battlefield battlefield = new Battlefield(); battlefield.RunBattle(); }
//Spawn an initial instance of the battlefield to which the user can then begin playing. private void InitializeBattlefield() { Battlefield = new Battlefield(); }