mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
17 lines
302 B
C++
17 lines
302 B
C++
|
|
#ifndef GX_C_GX_VIDEO_OPTIONS_HPP
|
||
|
|
#define GX_C_GX_VIDEO_OPTIONS_HPP
|
||
|
|
|
||
|
|
#include "ui/Types.hpp"
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class CGVideoOptions {
|
||
|
|
public:
|
||
|
|
// Static variables
|
||
|
|
static FrameScript_Method s_ScriptFunctions[];
|
||
|
|
|
||
|
|
// Static functions
|
||
|
|
static void RegisterScriptFunctions();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|