mirror of https://github.com/quasar/Quasar.git
27 lines
586 B
C#
27 lines
586 B
C#
using System.Collections.Generic;
|
|
using ProtoBuf;
|
|
using xServer.Core.Networking;
|
|
|
|
namespace xServer.Core.Packets.ClientPackets
|
|
{
|
|
[ProtoContract]
|
|
public class GetStartupItemsResponse : IPacket
|
|
{
|
|
[ProtoMember(1)]
|
|
public List<string> StartupItems { get; set; }
|
|
|
|
public GetStartupItemsResponse()
|
|
{
|
|
}
|
|
|
|
public GetStartupItemsResponse(List<string> startupitems)
|
|
{
|
|
this.StartupItems = startupitems;
|
|
}
|
|
|
|
public void Execute(Client client)
|
|
{
|
|
client.Send(this);
|
|
}
|
|
}
|
|
} |