Update SupplyCrates.hpp
All checks were successful
Generate testing snapshot / Create testing release (push) Successful in 40s

add ability to pull tires and tracks out of the arsenal boxes for loading into vehicles
This commit is contained in:
hizumi
2024-06-19 22:20:49 -05:00
parent 7c6130891a
commit 7e5e7e26af

View File

@@ -210,4 +210,28 @@ class SupplyCrates {
}; };
items[] = {}; items[] = {};
}; };
class ResupplyTire {
boxClass = "ACE_Wheel";
displayName = "Vehicle Tire";
tooltip = "A single tire for replacement";
icon = "A3\ui_f\data\igui\cfg\simpletasks\types\repair_ca.paa";
backpacks[] = {};
weapons[] = {};
magazines[] = {};
items[] = {};
};
class ResupplyTrack {
boxClass = "ACE_Track";
displayName = "Vehicle Track";
tooltip = "A single track for replacement";
icon = "z\ace\addons\repair\ui\patch_ca.paa";
backpacks[] = {};
weapons[] = {};
magazines[] = {};
items[] = {};
};
}; };