mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13c2127574
Removed all _F suffixes Reorganized the RPEP list. Removed unnecessary functions.
13 lines
336 B
Plaintext
13 lines
336 B
Plaintext
/**
|
|
* fn_isModLoaded_f.sqf
|
|
* Descr: Check in cfgPatches if modification is loaded
|
|
* Author: Glowbal
|
|
*
|
|
* Arguments: [modName STRING (Classname of the mod in cfgPatches)]
|
|
* Return: BOOL true if modification is loaded
|
|
* PublicAPI: true
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
(isClass (configFile >> "cfgPatches" >> (_this select 0))) |