Quasar/Server/Core/Packets/ClientPackets/Initialize.cs

55 lines
1.4 KiB
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
using ProtoBuf;
2015-01-13 18:29:11 +00:00
namespace xServer.Core.Packets.ClientPackets
2014-07-08 12:58:53 +00:00
{
[ProtoContract]
public class Initialize : IPacket
{
[ProtoMember(1)]
public string Version { get; set; }
[ProtoMember(2)]
public string OperatingSystem { get; set; }
[ProtoMember(3)]
public string AccountType { get; set; }
[ProtoMember(4)]
public string Country { get; set; }
[ProtoMember(5)]
public string CountryCode { get; set; }
[ProtoMember(6)]
public string Region { get; set; }
[ProtoMember(7)]
public string City { get; set; }
[ProtoMember(8)]
public int ImageIndex { get; set; }
[ProtoMember(9)]
public string Id { get; set; }
2014-07-08 12:58:53 +00:00
public Initialize() { }
public Initialize(string version, string operatingsystem, string accounttype, string country, string countrycode, string region, string city, int imageindex, string id)
2014-07-08 12:58:53 +00:00
{
Version = version;
OperatingSystem = operatingsystem;
AccountType = accounttype;
Country = country;
CountryCode = countrycode;
Region = region;
City = city;
ImageIndex = imageindex;
Id = id;
2014-07-08 12:58:53 +00:00
}
public void Execute(Client client)
{
client.Send<Initialize>(this);
}
}
}