ACE3/addons/common/functions/fnc_eraseCache.sqf

19 lines
293 B
Plaintext
Raw Normal View History

/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
* Deletes a cached result
*
* Arguments:
* 0: Namespace to store the cache on <NAMESPACE>
* 1: Cache uid <STRING>
*
* Return Value:
* None
*
* Public: No
*/
#include "script_component.hpp"
2015-05-14 18:06:06 +00:00
PARAMS_2(_namespace,_uid);
_namespace setVariable [_uid, nil];