コード例 #1
0
        public C2S_PlayEmote(PacketReader reader, ChannelID channelID, NetID senderNetID)
        {
            this.SenderNetID = senderNetID;
            this.ChannelID   = channelID;

            this.EmoteID = reader.ReadEmoteID();

            this.ExtraBytes = reader.ReadLeft();
        }
コード例 #2
0
 public static void WriteEmoteID(this PacketWriter writer, EmoteID data)
 {
     writer.WriteByte((byte)data);
 }
コード例 #3
0
ファイル: Emote.cs プロジェクト: Lezrec/My-20-Percent-Project
 public Emote(string name, EmoteID id)
 {
     this.name = name;
     myId = id;
 }