aboutsummaryrefslogtreecommitdiff
path: root/src/state.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-04-30 11:44:53 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-04-30 11:44:53 +0200
commit92ea4d16a274b4a7db0206fd74891a555f6501c9 (patch)
tree358a1b98f6d5c0985c2eaabc3c19b1b7db7327ba /src/state.h
parentd60a9fb712886880ec9630e744e1258ec3ed19b1 (diff)
downloadlanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.tar.gz
lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.tar.bz2
lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.zip
Progressively applying the coding rules
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/state.h b/src/state.h
index 9e43b41..197e052 100644
--- a/src/state.h
+++ b/src/state.h
@@ -6,14 +6,14 @@
6enum class LookupMode; 6enum class LookupMode;
7class Universe; 7class Universe;
8 8
9void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U) lua_State* L_); 9void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U_) lua_State* L_);
10 10
11// ################################################################################################# 11// #################################################################################################
12 12
13[[nodiscard]] lua_State* create_state(Universe* U, lua_State* from_); 13[[nodiscard]] lua_State* create_state(Universe* U_, lua_State* from_);
14[[nodiscard]] lua_State* luaG_newstate(Universe* U, SourceState _from, char const* libs); 14[[nodiscard]] lua_State* luaG_newstate(Universe* U_, SourceState _from, char const* libs);
15 15
16// ################################################################################################# 16// #################################################################################################
17 17
18void initialize_on_state_create(Universe* U, lua_State* L_); 18void initialize_on_state_create(Universe* U_, lua_State* L_);
19void call_on_state_create(Universe* U, lua_State* L_, lua_State* from_, LookupMode mode_); 19void call_on_state_create(Universe* U_, lua_State* L_, lua_State* from_, LookupMode mode_);