ArtemisComm.GameMasterMessagePacket.GetPacket C# (CSharp) Method

GetPacket() public static method

public static GetPacket ( byte console, string sender, string message ) : Packet
console byte
sender string
message string
return Packet
        public static Packet GetPacket(byte console, string sender, string message)
        {
            return new Packet(new GameMasterMessagePacket(console, sender, message));
        }
        public GameMasterMessagePacket(byte console, string sender, string message)