コード例 #1
0
ファイル: Engine.cs プロジェクト: TeamXenon/BattleField
 public void Start()
 {
     Console.WriteLine(GameMessage.IntroMessage);
     int size = this.GetFieldSize();
     IGameField field = new GameField(size);
     field.GenerateField();
     this.StartInteraction(field);
 }
コード例 #2
0
ファイル: Engine.cs プロジェクト: GStoykov/BattleField
 public void Start()
 {
     Console.WriteLine(@"Welcome to ""Battle Field"" game. ");
     int size = this.GetFieldSize();
     GameField field = new GameField(size);
     field.GenerateField();
     this.StartInteraction(field);
 }