PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
luafuncs_core_settings.h
1 #ifndef LUAFUNCS_CORE_SETTINGS_H
2 #define LUAFUNCS_CORE_SETTINGS_H
3 
4 #include <luabind/luabind.hpp>
5 #include <lua_inclues/lua.hpp>
6 
8 {
9 public:
10  static bool isFullscreenActive();
11  static int getScreenWidth();
12  static int getScreenHeight();
13  //static int getMaxFPS();
14  static int getTicksPerSecond();
15  static bool useFrameSkip();
16  static int getSoundVolume();
17  static int getMusicVolume();
18 
19  static bool isDebugInfoShown();
20  static void setDebugInfoShown(bool debugInfoShown);
21 
22  static luabind::scope bindToLua();
23 };
24 
25 #endif // LUAFUNCS_CORE_SETTINGS_H
Definition: luafuncs_core_settings.h:7