mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-18 10:43:22 +00:00
18 lines
393 B
C#
18 lines
393 B
C#
namespace WeaponPaints
|
|
{
|
|
public class WeaponInfo
|
|
{
|
|
public int Paint { get; set; }
|
|
public int Seed { get; set; }
|
|
public float Wear { get; set; }
|
|
|
|
public WeaponInfo() : this(0, 0, 0f) { }
|
|
|
|
public WeaponInfo(int paint, int seed, float wear)
|
|
{
|
|
Paint = paint;
|
|
Seed = seed;
|
|
Wear = wear;
|
|
}
|
|
}
|
|
} |