mirror of https://github.com/quasar/Quasar.git
16 lines
293 B
C#
16 lines
293 B
C#
|
using ProtoBuf;
|
|||
|
|
|||
|
namespace xServer.Core.Packets.ServerPackets
|
|||
|
{
|
|||
|
[ProtoContract]
|
|||
|
public class GetStartupItems : IPacket
|
|||
|
{
|
|||
|
public GetStartupItems() { }
|
|||
|
|
|||
|
public void Execute(Client client)
|
|||
|
{
|
|||
|
client.Send<GetStartupItems>(this);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|