CEngineSharp_Server.Networking.Packet.Packet C# (CSharp) Method

Packet() public method

public Packet ( PacketType packetType ) : System
packetType PacketType
return System
        public Packet(PacketType packetType)
        {
            _message = NetServiceLocator.Singleton.GetService().ConstructMessage();
            _message.Write((short)packetType);
        }
Packet