#ifndef STATE_H #define STATE_H #include #include typedef struct State { lua_State *L; bool loaded_successfully; } State; #endif