Ejemplo n.º 1
0
        /// <summary>
        /// Sends a given packet to the client
        /// </summary>
        public virtual void send(PacketBase packet)
        {               //First, allow the packet to serialize
            packet.MakeSerialized(this, _handler);

            //Start sending!
            _handler.sendPacket(packet, packet.Data, _ipe);
        }