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