Files
cs2-WeaponPaints/WeaponInfo.cs
Nereziel 56537971ad test update
min CSShrap 155
globalshare not working
db remake
add option to not use ontick fix to cs2 weapon models
!skins will save only changed weapon
2024-02-03 05:34:10 +01:00

13 lines
352 B
C#

namespace WeaponPaints
{
public class WeaponInfo
{
public ushort Paint { get; set; }
public ushort Seed { get; set; }
public float Wear { get; set; }
public string? NameTag { get; set; }
public ushort Quality { get; set; }
public uint StatTrack { get; set; }
public bool StatTrackEnabled { get; set; }
}
}