Exemplo n.º 1
0
 public Building(Empire empire, Position pos)
 {
     this.empire = empire;
     this.pos    = pos;
 }
Exemplo n.º 2
0
 public static void emergent(Empire empire)
 {
     empire.baseIncome.addResource(Resource.INFLUENCE, 2);
 }
Exemplo n.º 3
0
 public Station(Empire empire, Position pos, Level level = Level.Outpost) : base(empire, pos)
 {
     base.level = (int)level;
 }