示例#1
0
 public static void Serialize(IMessageWriter writer, byte playerId, ChatNoteType chatNoteType)
 {
     writer.Write(playerId);
     writer.Write((byte)chatNoteType);
 }
示例#2
0
 public static void Deserialize(IMessageReader reader, out byte playerId, out ChatNoteType chatNoteType)
 {
     playerId     = reader.ReadByte();
     chatNoteType = (ChatNoteType)reader.ReadByte();
 }