mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
22 lines
368 B
Plaintext
22 lines
368 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* 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
|
|
*/
|
|
|
|
params ["_namespace", "_uid"];
|
|
|
|
_namespace setVariable [_uid, nil];
|