mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-26 22:06:06 +03:00
15 lines
303 B
C++
15 lines
303 B
C++
#ifndef CONSOLE_GX_HPP
|
|
#define CONSOLE_GX_HPP
|
|
|
|
#include <cstdint>
|
|
#include "gx/Types.hpp"
|
|
|
|
extern const char* g_gxApiNames[GxApis_Last];
|
|
|
|
extern int32_t s_consoleGxOverrideSet[GxOverrides_Last];
|
|
extern uint32_t s_consoleGxOverrideVal[GxOverrides_Last];
|
|
|
|
void ConsoleGxOverride(const char* str);
|
|
|
|
#endif
|