2015-06-05 21:07:37 +00:00
|
|
|
|
using xServer.Core.Networking;
|
|
|
|
|
|
|
|
|
|
namespace xServer.Core.Packets
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2015-04-21 18:27:52 +00:00
|
|
|
|
public interface IPacket
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
|
|
|
|
void Execute(Client client);
|
|
|
|
|
}
|
2015-04-21 18:27:52 +00:00
|
|
|
|
}
|