This commit is contained in:
VegaZ
2021-04-15 22:43:43 +02:00
parent 98b5dc03f7
commit a95ec44baa
6 changed files with 75 additions and 33 deletions

View File

@@ -78,8 +78,13 @@ declare type FactionRank = {
declare type Weapon = {
WeaponModel: string;
Category: number;
CategoryId: number;
SlotID: number;
Ammo: number;
Price: number;
}
declare type WeaponCategory = {
Category: number;
Weapons: Weapon[];
}