mirror of https://github.com/axmolengine/axmol.git
21 lines
701 B
C
21 lines
701 B
C
#ifndef EAX_GLOBALS_INCLUDED
|
|
#define EAX_GLOBALS_INCLUDED
|
|
|
|
inline bool eax_g_is_enabled{true};
|
|
|
|
inline constexpr char eax1_ext_name[]{"EAX"};
|
|
inline constexpr char eax2_ext_name[]{"EAX2.0"};
|
|
inline constexpr char eax3_ext_name[]{"EAX3.0"};
|
|
inline constexpr char eax4_ext_name[]{"EAX4.0"};
|
|
inline constexpr char eax5_ext_name[]{"EAX5.0"};
|
|
|
|
inline constexpr char eax_x_ram_ext_name[]{"EAX-RAM"};
|
|
|
|
inline constexpr char eax_eax_set_func_name[]{"EAXSet"};
|
|
inline constexpr char eax_eax_get_func_name[]{"EAXGet"};
|
|
|
|
inline constexpr char eax_eax_set_buffer_mode_func_name[]{"EAXSetBufferMode"};
|
|
inline constexpr char eax_eax_get_buffer_mode_func_name[]{"EAXGetBufferMode"};
|
|
|
|
#endif // !EAX_GLOBALS_INCLUDED
|