Quasar/Server/Core/Packets/IPacket.cs

9 lines
147 B
C#

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