OpenGTA/lua_addon/lua_screen.h
Anonymous Maarten 78c27f03c8 2006-12-10
2015-12-03 01:37:02 +01:00

21 lines
378 B
C++

#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