Quasar/Client/Core/Packets/IPacket.cs

8 lines
109 B
C#
Raw Normal View History

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