Quasar/Server/Core/Packets/IPacket.cs

8 lines
117 B
C#

namespace xServer.Core.Packets
{
public interface IPacket
{
void Execute(Client client);
}
}