예제 #1
0
파일: Game.cs 프로젝트: sgtnasty/battle
 public void RemovePlayer(BattleEngine.Player.Player player)
 {
     this.players.Remove (player.Name);
     this.Console.ConsoleWriteLine (player.Summarize () + " removed");
 }
예제 #2
0
파일: Game.cs 프로젝트: sgtnasty/battle
 public void AddPlayer(BattleEngine.Player.Player player)
 {
     this.players.Add (player.Name, player);
     this.Console.ConsoleWriteLine (player.Summarize ());
 }