public GameRoomService(IServerNetWork network)
     : base(network)
 {
     roomManager = GameRoomManager.GetInstance();
 }
 public LoginService(IServerNetWork network)
     : base(network)
 {
 }
Exemple #3
0
 public PokerGameServiceBase(IServerNetWork netWork)
 {
     this.netWork = netWork;
     netWork.RegistReceiveCallBack(OnRecvMsg);
 }
Exemple #4
0
 public PokerGameLongConService(IServerNetWork network)
     : base(network)
 {
     _connectingClientDic = new ConcurrentDictionary <Guid, OnlineStateObject>();
     Init();
 }
Exemple #5
0
 public TestService(IServerNetWork network)
     : base(network)
 {
 }