lovr/src/lovr.h

12 lines
318 B
C
Raw Normal View History

2016-07-07 07:04:24 +00:00
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
2016-07-09 05:27:34 +00:00
#include "glfw.h"
2016-07-07 07:04:24 +00:00
2016-11-01 00:14:31 +00:00
void lovrInit(lua_State* L, int argc, char** argv);
void lovrDestroy(int exitCode);
2016-11-01 00:14:31 +00:00
void lovrRun(lua_State* L);
2016-08-08 19:22:33 +00:00
int lovrOnLuaError(lua_State* L);
void lovrOnGlfwError(int code, const char* description);
2016-07-09 05:27:34 +00:00
void lovrOnClose(GLFWwindow* window);