- Better syncing stattrak
This commit is contained in:
Dawid Bepierszcz
2024-10-18 23:40:44 +02:00
parent c43f4bde80
commit 2bc53cd3c0
7 changed files with 37 additions and 79 deletions

View File

@@ -3,13 +3,13 @@
public class WeaponInfo
{
public int Paint { get; set; }
public int Seed { get; set; } = 0;
public float Wear { get; set; } = 0f;
public int Seed { get; set; }
public float Wear { get; set; }
public string Nametag { get; set; } = "";
public bool StatTrak { get; set; } = false;
public int StatTrakCount { get; set; } = 0;
public int StatTrakCount { get; set; }
public KeyChainInfo? KeyChain { get; set; }
public List<StickerInfo> Stickers { get; set; } = new List<StickerInfo>();
public List<StickerInfo> Stickers { get; set; } = new();
}
public class StickerInfo