mysimulation/server/FSO.Server.Protocol/Voltron/IVoltronPacket.cs

15 lines
286 B
C#
Raw Permalink Normal View History

using FSO.Common.Serialization;
namespace FSO.Server.Protocol.Voltron
{
public interface IVoltronPacket : IoBufferDeserializable, IoBufferSerializable
{
/**
* Get packet type
*
* @return
*/
VoltronPacketType GetPacketType();
}
}