Quasar/Client/Core/Packets/IPacket.cs

8 lines
117 B
C#

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