mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-02 02:05:55 +02:00
14 lines
247 B
C++
14 lines
247 B
C++
#pragma once
|
|
|
|
#include "Lua.h"
|
|
|
|
namespace LuaDisplay
|
|
{
|
|
int getDimensions(lua_State *l);
|
|
int getWidth(lua_State *l);
|
|
int getHeight(lua_State *l);
|
|
int getCenter(lua_State *l);
|
|
int isFullscreen(lua_State *l);
|
|
|
|
};
|