diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-29 17:29:23 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-29 17:29:23 +0100 |
commit | 53d327679364093e8e1b4c17075633670bea9c83 (patch) | |
tree | c114ec2bec00c7f1cbd1ad4db1439d0b5089c25f /src/universe.h | |
parent | 17576c3f6762b5ba0359ddec04f5cd8916d3e2f8 (diff) | |
download | lanes-53d327679364093e8e1b4c17075633670bea9c83.tar.gz lanes-53d327679364093e8e1b4c17075633670bea9c83.tar.bz2 lanes-53d327679364093e8e1b4c17075633670bea9c83.zip |
C++ migration: all enums are enum class
Diffstat (limited to '')
-rw-r--r-- | src/universe.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/universe.h b/src/universe.h index a2ad5f5..3ee0868 100644 --- a/src/universe.h +++ b/src/universe.h | |||
@@ -13,13 +13,13 @@ extern "C" { | |||
13 | 13 | ||
14 | #include <mutex> | 14 | #include <mutex> |
15 | 15 | ||
16 | // ################################################################################################ | ||
17 | |||
16 | // forwards | 18 | // forwards |
17 | struct DeepPrelude; | 19 | struct DeepPrelude; |
18 | struct Keepers; | 20 | struct Keepers; |
19 | class Lane; | 21 | class Lane; |
20 | 22 | ||
21 | // ################################################################################################ | ||
22 | |||
23 | /* | 23 | /* |
24 | * Do we want to activate full lane tracking feature? (EXPERIMENTAL) | 24 | * Do we want to activate full lane tracking feature? (EXPERIMENTAL) |
25 | */ | 25 | */ |
@@ -167,6 +167,8 @@ struct Universe | |||
167 | int volatile selfdestructing_count{ 0 }; | 167 | int volatile selfdestructing_count{ 0 }; |
168 | }; | 168 | }; |
169 | 169 | ||
170 | // ################################################################################################ | ||
171 | |||
170 | Universe* universe_get(lua_State* L); | 172 | Universe* universe_get(lua_State* L); |
171 | Universe* universe_create(lua_State* L); | 173 | Universe* universe_create(lua_State* L); |
172 | void universe_store(lua_State* L, Universe* U); | 174 | void universe_store(lua_State* L, Universe* U); |