Exemplo n.º 1
0
Arquivo: Fleet.cs Projeto: ndech/Alpha
 internal Fleet(World world, string name, Realm owner, Zone location, List<Ship> ships)
     : base(world)
 {
     Id = IdSequence;
     Name = name;
     Owner = owner;
     Location = location;
     _ships = ships;
 }
Exemplo n.º 2
0
 internal RealmToken(Realm realm)
 {
     Realm = realm;
 }
Exemplo n.º 3
0
 public void CreateRealm(Realm realm)
 {
     _realms.Add(realm);
 }
Exemplo n.º 4
0
 public ChangeTreasuryCommand(Realm realm, float value)
 {
     _realm = realm;
     _value = value;
 }