public MachinesManager() { this.pilots = new List <IPilot>(); this.machineFactory = new MachineFactory(); this.machines = new List <IMachine>(); this.tanks = new List <ITank>(); this.fighters = new List <IFighter>(); }
public MachinesManager() { this.pilots = new Dictionary <string, IPilot>(); this.machines = new Dictionary <string, IMachine>(); this.machineFactory = new MachineFactory(); }