diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2024-04-14 18:27:10 +0200 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2024-04-14 18:27:10 +0200 |
commit | 69d40c81d8343a1af7e0fe61fbf20a4cf5880c25 (patch) | |
tree | cbf7aa525868040820ce6743f1a30fbb59926407 /src/state.h | |
parent | 0d9c9bae120f92274e1c68f7abdebfcf2c24405d (diff) | |
parent | 00970610dc8fbd00a11d3b69e4702933a592ce9f (diff) | |
download | lanes-69d40c81d8343a1af7e0fe61fbf20a4cf5880c25.tar.gz lanes-69d40c81d8343a1af7e0fe61fbf20a4cf5880c25.tar.bz2 lanes-69d40c81d8343a1af7e0fe61fbf20a4cf5880c25.zip |
Merge branch 'master' of https://github.com/LuaLanes/lanes
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/state.h b/src/state.h index 0e35e89..e1c311a 100644 --- a/src/state.h +++ b/src/state.h | |||
@@ -3,14 +3,15 @@ | |||
3 | #include "macros_and_utils.h" | 3 | #include "macros_and_utils.h" |
4 | 4 | ||
5 | // forwards | 5 | // forwards |
6 | struct Universe; | 6 | enum class LookupMode; |
7 | class Universe; | ||
7 | 8 | ||
8 | void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U) lua_State* L); | 9 | void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U) lua_State* L); |
9 | 10 | ||
10 | // ################################################################################################ | 11 | // ################################################################################################ |
11 | 12 | ||
12 | lua_State* create_state(Universe* U, lua_State* from_); | 13 | [[nodiscard]] lua_State* create_state(Universe* U, lua_State* from_); |
13 | lua_State* luaG_newstate(Universe* U, lua_State* _from, char const* libs); | 14 | [[nodiscard]] lua_State* luaG_newstate(Universe* U, Source _from, char const* libs); |
14 | 15 | ||
15 | // ################################################################################################ | 16 | // ################################################################################################ |
16 | 17 | ||