mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 09:22:24 +00:00
10 lines
210 B
C#
10 lines
210 B
C#
|
using FSO.Common.Serialization;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Gluon
|
|||
|
{
|
|||
|
public interface IGluonPacket : IoBufferDeserializable, IoBufferSerializable
|
|||
|
{
|
|||
|
GluonPacketType GetPacketType();
|
|||
|
}
|
|||
|
}
|