diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/PtcM2C_UpdateLeagueTeamState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/PtcM2C_UpdateLeagueTeamState.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/PtcM2C_UpdateLeagueTeamState.cs b/Client/Assets/Scripts/XMainClient/PTC/PtcM2C_UpdateLeagueTeamState.cs new file mode 100644 index 00000000..b41de35a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/PtcM2C_UpdateLeagueTeamState.cs @@ -0,0 +1,32 @@ +using System;
+using System.IO;
+using KKSG;
+using ProtoBuf;
+
+namespace XMainClient
+{
+ internal class PtcM2C_UpdateLeagueTeamState : Protocol
+ {
+ public UpdateLeagueTeamState Data = new UpdateLeagueTeamState();
+
+ public override uint GetProtoType()
+ {
+ return 7643u;
+ }
+
+ public override void Serialize(MemoryStream stream)
+ {
+ Serializer.Serialize<UpdateLeagueTeamState>(stream, this.Data);
+ }
+
+ public override void DeSerialize(MemoryStream stream)
+ {
+ this.Data = Serializer.Deserialize<UpdateLeagueTeamState>(stream);
+ }
+
+ public override void Process()
+ {
+ Process_PtcM2C_UpdateLeagueTeamState.Process(this);
+ }
+ }
+}
|