mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +00:00
417b047cf3
git-svn-id: https://svn.eduke32.com/eduke32@6056 1a8010ca-5511-0410-912e-c29ae57300e0
20 lines
351 B
C++
20 lines
351 B
C++
/* The Lunatic Interpreter, part of EDuke32. Editor stuff. */
|
|
|
|
#ifdef USE_LUAJIT_2_1
|
|
# include <luajit-2.1/lualib.h>
|
|
#else
|
|
# include <luajit-2.0/lualib.h>
|
|
#endif
|
|
|
|
#include "lunatic_editor.h"
|
|
|
|
|
|
int Em_CreateState(L_State *estate)
|
|
{
|
|
return L_CreateState(estate, "m32", NULL);
|
|
}
|
|
|
|
void Em_DestroyState(L_State *estate)
|
|
{
|
|
L_DestroyState(estate);
|
|
}
|