ACE3/addons/common/functions/fnc_closeAllDialogs_f.sqf

14 lines
214 B
Plaintext
Raw Normal View History

2015-01-16 23:21:47 +00:00
/**
* fn_closeAllDialogs_f.sqf
* @Descr: Close all dialogs
* @Author: Glowbal
*
* @Arguments: []
* @Return: void
* @PublicAPI: true
*/
#include "script_component.hpp"
while {dialog} do {
closeDialog 0;
};