mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 08:42:45 +03:00
18 lines
438 B
C++
18 lines
438 B
C++
#ifndef UI_GAME_C_G_VIDEO_OPTIONS_HPP
|
|
#define UI_GAME_C_G_VIDEO_OPTIONS_HPP
|
|
|
|
#include "ui/FrameScript.hpp"
|
|
#include "ui/game/CGVideoOptionsScript.hpp"
|
|
|
|
class CGVideoOptions {
|
|
public:
|
|
// Static members
|
|
static FrameScript_Method s_ScriptFunctions[NUM_SCRIPT_FUNCTIONS_VIDEO_OPTIONS];
|
|
|
|
// Static functions
|
|
static void RegisterScriptFunctions();
|
|
static void UnregisterScriptFunctions();
|
|
};
|
|
|
|
#endif
|