townengine/apps/twnlua/state.h
2025-01-26 08:51:54 +03:00

15 lines
162 B
C

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