Quasar/Server/Core/Packets/IPacket.cs

8 lines
109 B
C#

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