Example #1
0
 internal static bool InputAction(GameContext game, Player player, ActionInput input)
 {
     #warning unfinished
       return true;
 }
Example #2
0
 internal TurnBuilder(GameContext game)
 {
     this.game = game;
 }
Example #3
0
File: Game.cs Project: sunoru/PBO
 private static void GameLoop(GameContext game)
 {
     ActionInput[] actions = new ActionInput[game.Settings.PlayersPerTeam * game.Settings.TeamCount];
 }