townengine/apps/twnlua/state.h

13 lines
144 B
C

#ifndef STATE_H
#define STATE_H
#include <stdbool.h>
typedef struct State {
lua_State *L;
bool loaded_successfully;
} State;
#endif