ACE3/addons/common/functions/fnc_eraseCache.sqf
2015-03-24 01:18:00 -03:00

19 lines
304 B
Plaintext

/*
* 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"
EXPLODE_2_PVT(_this,_namespace,_uid);
_namespace setVariable [_uid, nil];