mysimulation/server/FSO.Server.Protocol/Electron/IElectronPacket.cs

10 lines
219 B
C#
Raw Permalink Normal View History

using FSO.Common.Serialization;
namespace FSO.Server.Protocol.Electron
{
public interface IElectronPacket : IoBufferDeserializable, IoBufferSerializable
{
ElectronPacketType GetPacketType();
}
}