mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
cd30b09b4f
* Convert ACE_settings to CBA_settings * Run Modules Globaly, BWC for SetSetting * Add support for string settings * ACE_ServerSettings warning * Add handler for global setting being changed * Add deprecated and replaced not to Settings Framework doc * Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu * Change modules scope to 1 * Disable debug
14 lines
368 B
C++
14 lines
368 B
C++
class RscDisplayEmpty;
|
|
class GVAR(MainMenuHelperDumpDebug): RscDisplayEmpty {
|
|
onLoad = QUOTE(\
|
|
[] call FUNC(debugDumpToClipboard);\
|
|
(_this select 0) closeDisplay 0;\
|
|
);
|
|
};
|
|
class GVAR(MainMenuHelperHeadBugFix): RscDisplayEmpty {
|
|
onLoad = QUOTE(\
|
|
0 spawn EFUNC(common,headBugFix);\
|
|
(_this select 0) closeDisplay 0;\
|
|
);
|
|
};
|