OpenGTA/lua_addon/lua_screen.h

21 lines
378 B
C
Raw Permalink Normal View History

2015-12-03 00:37:02 +00:00
#ifndef LUA_OGTA_SCREEN_H
#define LUA_OGTA_SCREEN_H
#include "gl_screen.h"
#include "lua.hpp"
namespace OpenGTA {
namespace Script {
class Screen {
public:
static int getFullscreen(lua_State *L);
static int setFullscreen(lua_State *L);
static int makeScreenShot(lua_State *L);
static const luaL_reg methods[];
};
}
}
#endif