mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
487 B
C++
18 lines
487 B
C++
|
class GVAR(DisableMouse_Dialog) {
|
||
|
idd = -1;
|
||
|
movingEnable = 0;
|
||
|
onLoad = QUOTE(with uiNameSpace do { GVAR(dlgDisableMouse) = _this # 0; };);
|
||
|
objects[] = {};
|
||
|
class controlsBackground {
|
||
|
// Transparent map allows setting custom cursor
|
||
|
class Background: ctrlMapEmpty {
|
||
|
idc = 101;
|
||
|
fade = 1;
|
||
|
x = "safezoneXAbs";
|
||
|
y = "safezoneY";
|
||
|
w = "safezoneWAbs";
|
||
|
h = "safezoneH";
|
||
|
};
|
||
|
};
|
||
|
};
|