mqbuildconfig.h (251B)
1 #pragma once 2 3 #define MQ_VOICE_EXPANSION 0 4 5 namespace mqLib 6 { 7 static constexpr bool g_pluginDemo = false; 8 9 #if MQ_VOICE_EXPANSION 10 static constexpr bool g_useVoiceExpansion = true; 11 #else 12 static constexpr bool g_useVoiceExpansion = false; 13 #endif 14 } 15 16