townengine/apps/twnlua/state.h

13 lines
111 B
C
Raw Normal View History

2024-10-05 21:17:22 +00:00
#ifndef STATE_H
#define STATE_H
#include <lua.h>
typedef struct State {
lua_State *L;
} State;
#endif