Epoch/Sources/epoch_code/compile/both/EPOCH_isAny.sqf

6 lines
136 B
Plaintext
Raw Normal View History

2015-09-14 20:55:36 +00:00
private ["_item","_return"];
_item = _this select 0;
_type = _this select 1;
_return = str(configFile >> _type >> _item) != "";
_return