aboutsummaryrefslogtreecommitdiff
path: root/src/util/basic_macros.h
Commit message (Collapse)AuthorAge
* Move PP() and PP2() macros to basic_macros.hRogier2016-12-24
| | | | Instead of redefining them everywhere.
* Silence 'unused typedef' warning for STATIC_ASSERT()kwolekr2015-11-03
|
* Rename and move basicmacros.h to util/basic_macros.hest312015-11-02
re_custom_ids = true, add_entity_with_staticdata = true, no_chat_message_prediction = true, object_use_texture_alpha = true, object_independent_selectionbox = true, httpfetch_binary_data = true, } function core.has_feature(arg) if type(arg) == "table" then local missing_features = {} local result = true for ftr in pairs(arg) do if not core.features[ftr] then missing_features[ftr] = true result = false end end return result, missing_features elseif type(arg) == "string" then if not core.features[arg] then return false, {[arg]=true} end return true, {} end end