mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
10 lines
219 B
C#
10 lines
219 B
C#
|
using FSO.Common.Serialization;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Electron
|
|||
|
{
|
|||
|
public interface IElectronPacket : IoBufferDeserializable, IoBufferSerializable
|
|||
|
{
|
|||
|
ElectronPacketType GetPacketType();
|
|||
|
}
|
|||
|
}
|