mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
477 B
C++
14 lines
477 B
C++
|
class RscPictureKeepAspect;
|
||
|
class RscInGameUI {
|
||
|
class RscStanceInfo {
|
||
|
controls[] += {QGVAR(bloodVolumeIndicator)};
|
||
|
class GVAR(bloodVolumeIndicator): RscPictureKeepAspect {
|
||
|
onLoad = QUOTE(uiNamespace setVariable [ARR_2(QQGVAR(bloodVolumeIndicator),_this select 0)]);
|
||
|
x = IGUI_GRID_STANCE_X;
|
||
|
y = IGUI_GRID_STANCE_Y;
|
||
|
w = IGUI_GRID_STANCE_WAbs / 4;
|
||
|
h = IGUI_GRID_STANCE_HAbs / 4;
|
||
|
};
|
||
|
};
|
||
|
};
|