mirror of https://github.com/quasar/Quasar.git
8 lines
109 B
C#
8 lines
109 B
C#
|
namespace Core.Packets
|
|||
|
{
|
|||
|
public interface IPacket
|
|||
|
{
|
|||
|
void Execute(Client client);
|
|||
|
}
|
|||
|
}
|