![]() |
Elevate Engine 1
|
Go to the source code of this file.
Macros | |
| #define | EE_BIND_EVNT_FN(fn) std::bind(&fn, this, std::placeholders::_1) |
| #define | EE_CFATAL(condition, ...) if(condition) { EE_FATAL(__VA_ARGS__); } |
| #define | EE_ASSERTS_ENABLED 0 |
| #define | NDEBUG |
| #define | DEBUG_BREAK() raise(SIGTRAP) |
| #define | EE_ASSERT(x, ...) { if(!(x)) { EE_ERROR("Assertions Failed: {}", __VA_ARGS__); } } |
| #define EE_ASSERT | ( | x, | |
| ... | |||
| ) | { if(!(x)) { EE_ERROR("Assertions Failed: {}", __VA_ARGS__); } } |
| #define EE_BIND_EVNT_FN | ( | fn | ) | std::bind(&fn, this, std::placeholders::_1) |
| #define EE_CFATAL | ( | condition, | |
| ... | |||
| ) | if(condition) { EE_FATAL(__VA_ARGS__); } |