Пример #1
0
 public NetworkServer()
 {
     m_Dispose      = false;
     m_Transport    = new ServerTransport();
     m_Connections  = new HDictionary <uint, Connection>();
     m_WrapChannels = new HConcurrentQueue <WrapChannel>();
 }
Пример #2
0
 public Entities(AbsWorld world)
 {
     m_World    = world;
     m_Removes  = new List <uint>();
     m_Entities = new HDictionary <uint, Entity>();
 }
Пример #3
0
 public Connection(IChannel channel)
 {
     m_Channel   = channel;
     m_Protocols = new HDictionary <Type, AbsProtocolHandler>();
 }
Пример #4
0
 public Cops()
 {
     m_Cops = new HDictionary <Type, ICop>();
 }