예제 #1
0
파일: GameHub.cs 프로젝트: apprime/Game
 public GameHub(GameWrapper wrapper, IServiceProvider sp)
 {
     serviceProvider = sp;
 }
예제 #2
0
 public PlayerHub(GameWrapper wrapper, IServiceProvider services)
 {
     this.services = services;
 }
예제 #3
0
        //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)
        {
        }
예제 #4
0
파일: MonsterHub.cs 프로젝트: apprime/Game
 public MonsterHub(GameWrapper wrapper, IServiceProvider sp)
 {
     serviceProvider = sp;
 }