public S2C_OnEnterTeamVisiblity(PacketReader reader, ChannelID channelID, NetID senderNetID)
        {
            this.SenderNetID = senderNetID;
            this.ChannelID   = channelID;

            this.VisibilityTeam = reader.ReadVisibilityTeam();
            this.ExtraBytes     = reader.ReadLeft();
        }
Example #2
0
 public static void WriteVisibilityTeam(this PacketWriter writer, VisibilityTeam data)
 {
     writer.WriteByte((byte)data);
 }