Exemplo n.º 1
0
 /// <summary>
 /// Constructs the world
 /// </summary>
 /// <param name="networkManager"></param>
 public World()
 {
     ShipManager = new ShipManager(this);
     BulletManager = new BulletManager();
     BotManager = new BotManager();
 }
 public UserManager(ShipManager shipManager)
 {
     Users = new Dictionary<string, User>();
     this.shipManager = shipManager;
 }