コード例 #1
0
ファイル: Match.cs プロジェクト: stufkan/RobotGameTournament
 public Match(Robot player1, Robot player2)
 {
     Player1 = player1;
     Player2 = player2;
 }
コード例 #2
0
ファイル: Robot.cs プロジェクト: stufkan/RobotGameTournament
 public static Robot Draw()
 {
     if (DrawInstance == null)
         DrawInstance = new Robot("DRAW");
     return DrawInstance;
 }