コード例 #1
0
 public ApiJoinGameInfo(long maxTicks, ApiPlayerRole playerRole, ApiShipConstraints shipConstraints, ApiPlanet planet, ApiShipMatter defenderShip)
 {
     MaxTicks        = maxTicks;
     PlayerRole      = playerRole;
     ShipConstraints = shipConstraints;
     Planet          = planet;
     DefenderShip    = defenderShip;
 }
コード例 #2
0
 public ApiGameLog(ApiPlanet planet, List <ApiTickLog> ticks)
 {
     Planet = planet;
     Ticks  = ticks;
 }
コード例 #3
0
 public ApiUniverse(long tick, ApiPlanet planet, ApiShipAndCommands[] ships)
 {
     Tick   = tick;
     Planet = planet;
     Ships  = ships;
 }