mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-25 18:59:12 +00:00
22 lines
484 B
C#
22 lines
484 B
C#
|
using FSO.Common.Serialization;
|
|||
|
using Mina.Core.Buffer;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Aries.Packets
|
|||
|
{
|
|||
|
public class AnswerAccepted : IAriesPacket
|
|||
|
{
|
|||
|
public void Deserialize(IoBuffer input, ISerializationContext context)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public AriesPacketType GetPacketType()
|
|||
|
{
|
|||
|
return AriesPacketType.AnswerAccepted;
|
|||
|
}
|
|||
|
|
|||
|
public void Serialize(IoBuffer output, ISerializationContext context)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|