ArtemisComm.GameMasterMessagePacket.GetPacket C# (CSharp) 메소드

GetPacket() 공개 정적인 메소드

public static GetPacket ( byte console, string sender, string message ) : Packet
console byte
sender string
message string
리턴 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)