Quasar/Client/Core/Packets/IPacket.cs

7 lines
115 B
C#
Raw Normal View History

2015-01-13 18:29:11 +00:00
namespace xClient.Core.Packets
2014-07-08 12:58:53 +00:00
{
public interface IPacket
2014-07-08 12:58:53 +00:00
{
void Execute(Client client);
}
}