This commit is contained in:
Nereziel
2024-05-26 19:28:36 +02:00
parent 771a832ae8
commit 322b1b425b
21 changed files with 1264 additions and 1093 deletions

View File

@@ -2,8 +2,12 @@
{
public class WeaponInfo
{
public int Paint { get; set; }
public int Seed { get; set; } = 0;
public ushort Paint { get; set; }
public ushort Seed { get; set; } = 0;
public float Wear { get; set; } = 0f;
}
public string? NameTag { get; set; }
public ushort Quality { get; set; }
public uint StatTrack { get; set; }
public bool StatTrackEnabled { get; set; }
}
}