mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 01:42:24 +00:00
15 lines
286 B
C#
15 lines
286 B
C#
|
using FSO.Common.Serialization;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Voltron
|
|||
|
{
|
|||
|
public interface IVoltronPacket : IoBufferDeserializable, IoBufferSerializable
|
|||
|
{
|
|||
|
/**
|
|||
|
* Get packet type
|
|||
|
*
|
|||
|
* @return
|
|||
|
*/
|
|||
|
VoltronPacketType GetPacketType();
|
|||
|
}
|
|||
|
}
|