Esempio n. 1
0
        public ObjectNetComponent(AOSClient client)
            : base(client)
        {
            instCallbacks = new Dictionary <string, NetInstantiationCallback>();
            netObjects    = new NetCreatableCollection();

            heldInstantiationPackets = new Queue <NetInboundPacket>();
            heldDestroyPackets       = new Queue <NetInboundPacket>();
        }
Esempio n. 2
0
 public ObjectNetComponent(AOSServer server)
     : base(server)
 {
     netObjects  = new NetCreatableCollection();
     instPackets = new Dictionary <ushort, NetOutboundPacket>();
 }