rename /apps/lua/ to /apps/twnlua/

This commit is contained in:
2024-10-07 15:52:32 +03:00
parent 36fbc5b43f
commit 8463ed4440
77 changed files with 1 additions and 1 deletions

14
apps/twnlua/state.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef STATE_H
#define STATE_H
#include "twn_game_api.h"
#include <lua.h>
typedef struct State {
lua_State *L;
} State;
#endif