public GameHub(GameWrapper wrapper, IServiceProvider sp) { serviceProvider = sp; }
public PlayerHub(GameWrapper wrapper, IServiceProvider services) { this.services = services; }
//TODO //Provide chat room abstraction. //List of players inside, mods, kicks and bans, password //Put in data project, these have to exist for all consuming interfaces //Replace int room with ChatRoom room //TODO //Add list of default chatrooms //Add rooms that automatically join when doing other things, like joining a group or entering town. public ChatHub(GameWrapper wrapper) { }
public MonsterHub(GameWrapper wrapper, IServiceProvider sp) { serviceProvider = sp; }