Quasar/Client/Core/Packets/IPacket.cs

7 lines
115 B
C#

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