13 lines
111 B
C
13 lines
111 B
C
|
#ifndef STATE_H
|
||
|
#define STATE_H
|
||
|
|
||
|
#include <lua.h>
|
||
|
|
||
|
|
||
|
typedef struct State {
|
||
|
lua_State *L;
|
||
|
} State;
|
||
|
|
||
|
|
||
|
#endif
|