Supercell.GUT/Supercell.GUT.Logic/Message/Account/CreateAccountOkMessage.cs
BreadDEV 8c6a533918 [v0.0.2] you can enter menu now. but still early state
todo: improve code and finish base structures
2024-03-05 17:37:18 +07:00

56 lines
1.3 KiB
C#

using Supercell.GUT.Logic.Message.Attributes;
using Supercell.GUT.Titan.Logic.Message;
namespace Supercell.GUT.Logic.Message.Account;
[VersionedMessage(20101)]
public class CreateAccountOkMessage : VersionedMessage
{
public int AccountIdHigherInt { get; set; }
public int AccountIdLowerInt { get; set; }
public string? SessionKey { get; set; }
public CreateAccountOkMessage() : base(0)
{
this.AccountIdHigherInt = 0;
this.AccountIdLowerInt = 0;
this.SessionKey = null;
}
public override void Encode()
{
base.Encode();
this.ByteStream.WriteInt(this.AccountIdHigherInt);
this.ByteStream.WriteInt(this.AccountIdLowerInt);
this.ByteStream.WriteString(this.SessionKey);
}
public override void Decode()
{
base.Decode();
this.AccountIdHigherInt = this.ByteStream.ReadInt();
this.AccountIdLowerInt = this.ByteStream.ReadInt();
this.SessionKey = this.ByteStream.ReadString();
}
public override int GetMessageType()
{
return 20101;
}
public override int GetServiceNodeType()
{
return 1;
}
public override void Destruct()
{
base.Destruct();
this.AccountIdHigherInt = 0;
this.AccountIdLowerInt = 0;
this.SessionKey = null;
}
}