1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00
ACE3/addons/common/functions/fnc_eraseCache.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines ()
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

22 lines
365 B
Plaintext

/*
* Author: esteldunedain
* Deletes a cached result
*
* Arguments:
* 0: Namespace to store the cache on <NAMESPACE>
* 1: Cache uid <STRING>
*
* Return Value:
* None
*
* Example:
* [NAMESPACE, "UID"] call ace_common_fnc_eraseCache
*
* Public: No
*/
#include "script_component.hpp"
params ["_namespace", "_uid"];
_namespace setVariable [_uid, nil];