mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-18 18:49:21 +00:00
13 lines
363 B
C#
13 lines
363 B
C#
namespace WeaponPaints
|
|
{
|
|
public class WeaponInfo
|
|
{
|
|
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; }
|
|
}
|
|
} |