mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
8c6a533918
todo: improve code and finish base structures
26 lines
510 B
C#
26 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);
|
|
}
|
|
}
|