8 lines
273 B
C++
8 lines
273 B
C++
#ifndef __JABYENGINE_CONFIG_HPP__
|
|
#define __JABYENGINE_CONFIG_HPP__
|
|
#ifdef USE_CUSTOM_CONFIG
|
|
#include <jabyengine_custom_config.hpp>
|
|
#else
|
|
#define JABYENGINE_USE_HIGH_PERCISION_TIMER
|
|
#endif //USE_CUSTOM_CONFIG
|
|
#endif //!__JABYENGINE_CONFIG_HPP__
|