diff options
Diffstat (limited to 'src/platforms/core_web.c')
| -rw-r--r-- | src/platforms/core_web.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/platforms/core_web.c b/src/platforms/core_web.c new file mode 100644 index 0000000..24d3bf2 --- /dev/null +++ b/src/platforms/core_web.c @@ -0,0 +1,20 @@ +#include "main.h" +#include "lua_core.h" +#include "core.h" + +void platformDefineGlobals() { + lua_State *L = state->luaState; + + lua_getglobal( L, "RL" ); +/*DOC_DEFINES_START*/ +/*DOC_DEFINES_END*/ + lua_pop( L, -1 ); +} + +/* Functions. */ + +/* Events. */ + +void luaPlatformRegister() { + return; +} |
