Fun.FunapiMessage.FunapiMessage C# (CSharp) 메소드

FunapiMessage() 공개 메소드

public FunapiMessage ( TransportProtocol protocol, string msg_type, object message, EncryptionType enc = EncryptionType.kDefaultEncryption ) : UnityEngine
protocol TransportProtocol
msg_type string
message object
enc EncryptionType
리턴 UnityEngine
        public FunapiMessage(TransportProtocol protocol, string msg_type, object message,
                              EncryptionType enc = EncryptionType.kDefaultEncryption)
        {
            this.protocol = protocol;
            this.enc_type = enc;
            this.msg_type = msg_type;
            this.message = message;
        }