Beispiel #1
0
 public NetBase(int maxConnections, NetConfig config)
 {
     network  = new NetManager(this, maxConnections, config.Key);
     handlers = new Dictionary <NetPacketType, MessageDelegate>();
     config.Configure(network);
     writer = new NetDataWriter();
 }