This commit is contained in:
StefanX
2024-10-18 19:54:21 +03:00
parent c55a40ecb1
commit e209b12829

View File

@@ -1,29 +1,32 @@
public class WeaponInfo namespace WeaponPaints
{ {
public int Paint { get; set; } public class WeaponInfo
public int Seed { get; set; } = 0; {
public float Wear { get; set; } = 0f; public int Paint { get; set; }
public string Nametag { get; set; } = ""; public int Seed { get; set; } = 0;
public KeyChainInfo? KeyChain { get; set; } public float Wear { get; set; } = 0f;
public List<StickerInfo> Stickers { get; set; } = new List<StickerInfo>(); public string Nametag { get; set; } = "";
} public KeyChainInfo? KeyChain { get; set; }
public List<StickerInfo> Stickers { get; set; } = new List<StickerInfo>();
}
public class StickerInfo public class StickerInfo
{ {
public uint Id { get; set; } public uint Id { get; set; }
public uint Schema { get; set; } public uint Schema { get; set; }
public float OffsetX { get; set; } public float OffsetX { get; set; }
public float OffsetY { get; set; } public float OffsetY { get; set; }
public float Wear { get; set; } public float Wear { get; set; }
public float Scale { get; set; } public float Scale { get; set; }
public float Rotation { get; set; } public float Rotation { get; set; }
} }
public class KeyChainInfo public class KeyChainInfo
{ {
public uint Id { get; set; } public uint Id { get; set; }
public float OffsetX { get; set; } public float OffsetX { get; set; }
public float OffsetY { get; set; } public float OffsetY { get; set; }
public float OffsetZ { get; set; } public float OffsetZ { get; set; }
public uint Seed { get; set; } public uint Seed { get; set; }
}
} }