mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 09:22:24 +00:00
15 lines
280 B
C#
15 lines
280 B
C#
|
using FSO.Common.Serialization;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Aries
|
|||
|
{
|
|||
|
public interface IAriesPacket : IoBufferSerializable, IoBufferDeserializable
|
|||
|
{
|
|||
|
/**
|
|||
|
* Get packet type
|
|||
|
*
|
|||
|
* @return
|
|||
|
*/
|
|||
|
AriesPacketType GetPacketType();
|
|||
|
}
|
|||
|
}
|