Quasar/Client/Core/Packets/IPacket.cs

7 lines
115 B
C#
Raw Normal View History

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