forge/arma/client/addons/garage/ui/RscGarage.hpp
Jacob Schmidt bdc1e36e63 Implement interactive garage UI with service-based client bridge
- replace placeholder garage interaction with real UI open flow
- add catalog/session/UI bridge services for hydrate, sync, store, and retrieve actions
- migrate garage web UI bundle to new app shell/runtime structure
- align org/store function naming with shared init and UI bridge patterns
2026-03-14 03:06:18 -05:00

22 lines
544 B
C++

class RscGarage {
idd = 1005;
fadeIn = 0;
fadeOut = 0;
duration = 1e011;
onLoad = "uiNamespace setVariable ['RscGarage', _this select 0]";
onUnLoad = "uinamespace setVariable ['RscGarage', nil]";
class controlsBackground {};
class controls {
class IFrame: RscText {
type = 106;
idc = 1006;
x = "safeZoneXAbs";
y = "safeZoneY";
w = "safeZoneWAbs";
h = "safeZoneH";
colorBackground[] = {0, 0, 0, 0};
};
};
};