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

View File

@@ -1,15 +1,17 @@
public class WeaponInfo namespace WeaponPaints
{ {
public class WeaponInfo
{
public int Paint { get; set; } public int Paint { get; set; }
public int Seed { get; set; } = 0; public int Seed { get; set; } = 0;
public float Wear { get; set; } = 0f; public float Wear { get; set; } = 0f;
public string Nametag { get; set; } = ""; public string Nametag { get; set; } = "";
public KeyChainInfo? KeyChain { get; set; } public KeyChainInfo? KeyChain { get; set; }
public List<StickerInfo> Stickers { get; set; } = new List<StickerInfo>(); 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; }
@@ -17,13 +19,14 @@ public class StickerInfo
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; }
}
} }