mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-25 18:59:12 +00:00
28 lines
741 B
C#
28 lines
741 B
C#
|
using FSO.Common.Serialization;
|
|||
|
using Mina.Core.Buffer;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Gluon.Packets
|
|||
|
{
|
|||
|
public class TuningChanged : AbstractGluonCallPacket
|
|||
|
{
|
|||
|
public bool UpdateInstantly;
|
|||
|
|
|||
|
public override void Deserialize(IoBuffer input, ISerializationContext context)
|
|||
|
{
|
|||
|
base.Deserialize(input, context);
|
|||
|
UpdateInstantly = input.GetBool();
|
|||
|
}
|
|||
|
|
|||
|
public override void Serialize(IoBuffer output, ISerializationContext context)
|
|||
|
{
|
|||
|
base.Serialize(output, context);
|
|||
|
output.PutBool(UpdateInstantly);
|
|||
|
}
|
|||
|
|
|||
|
public override GluonPacketType GetPacketType()
|
|||
|
{
|
|||
|
return GluonPacketType.TuningChanged;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|