Example #1
0
 //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();
 }
Example #2
0
        static void Main(string[] args)
        {
            Battlefield battlefield = new Battlefield();

            battlefield.RunBattle();
        }
Example #3
0
 //Spawn an initial instance of the battlefield to which the user can then begin playing.
 private void InitializeBattlefield()
 {
     Battlefield = new Battlefield();
 }