8 lines
244 B
C
8 lines
244 B
C
|
|
#pragma once
|
||
|
|
#include "mix_cc/debug/debug.h"
|
||
|
|
|
||
|
|
#ifdef DEBUG
|
||
|
|
#define MIX_CC_TEST_DEBUG_MODE mix_cc::debug::detail::TestDebugModeTrue g_debug_mode;
|
||
|
|
#else
|
||
|
|
#define MIX_CC_TEST_DEBUG_MODE mix_cc::debug::detail::TestDebugModeFalse g_debug_mode;
|
||
|
|
#endif
|