mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
393 B
Plaintext
22 lines
393 B
Plaintext
/*
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Closes the Interaction menu
|
|
|
|
Parameters:
|
|
Nothing
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
call FUNC(hideMenu);
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
closeDialog 0;
|
|
(findDisplay 1713999) closeDisplay 1;
|
|
(uiNameSpace getVariable QGVAR(Flow_Display)) closeDisplay 0;
|
|
GVAR(MainButton) = nil;
|
|
call FUNC(hideMouseHint); |