Quasar/Server/Core/Packets/IPacket.cs

8 lines
109 B
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
namespace Core.Packets
{
public interface IPacket
{
void Execute(Client client);
}
}