Fixed some (many) "{ get; set; }"

This commit is contained in:
Fabian
2017-10-26 19:36:15 +02:00
parent 5d1f0a8dc8
commit 8393349316
77 changed files with 3704 additions and 3697 deletions
+7 -7
View File
@@ -21,9 +21,9 @@ namespace Game.Network.Packets
{
public class AutoBankItem : ClientPacket
{
public InvUpdate Inv;
public byte Bag;
public byte Slot;
public InvUpdate Inv { get; set; }
public byte Bag { get; set; }
public byte Slot { get; set; }
public AutoBankItem(WorldPacket packet) : base(packet) { }
@@ -37,9 +37,9 @@ namespace Game.Network.Packets
public class AutoStoreBankItem : ClientPacket
{
public InvUpdate Inv;
public byte Bag;
public byte Slot;
public InvUpdate Inv { get; set; }
public byte Bag { get; set; }
public byte Slot { get; set; }
public AutoStoreBankItem(WorldPacket packet) : base(packet) { }
@@ -60,6 +60,6 @@ namespace Game.Network.Packets
Guid = _worldPacket.ReadPackedGuid();
}
public ObjectGuid Guid;
public ObjectGuid Guid { get; set; }
}
}