mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-13 00:54:37 +00:00
27 lines
510 B
C#
27 lines
510 B
C#
|
using Supercell.GUT.Logic.Base;
|
|||
|
using Supercell.GUT.Titan.Logic.DataStream;
|
|||
|
|
|||
|
namespace Supercell.GUT.Logic.Avatar;
|
|||
|
|
|||
|
public class LogicAvatarGame : LogicBase
|
|||
|
{
|
|||
|
public LogicAvatarGame() : base(20486)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public override void Destruct()
|
|||
|
{
|
|||
|
base.Destruct();
|
|||
|
}
|
|||
|
|
|||
|
public override void Encode(ChecksumEncoder checksumEncoder)
|
|||
|
{
|
|||
|
base.Encode(checksumEncoder);
|
|||
|
}
|
|||
|
|
|||
|
public override void Decode(ByteStream byteStream)
|
|||
|
{
|
|||
|
base.Decode(byteStream);
|
|||
|
}
|
|||
|
}
|