summaryrefslogtreecommitdiff
path: root/src/platforms/core_web.c
blob: 2cf255acc8625449b5d0f31fe78aff557a46930c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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() {
}