diff options
-rw-r--r-- | CHANGELOG.txt | 3 | ||||
-rw-r--r-- | README.txt | 3 | ||||
-rw-r--r-- | bowshock/include/bow/base.hxx | 36 |
3 files changed, 23 insertions, 19 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5dd2148..c64d228 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -34,6 +34,9 @@ * Update help screen * Fix objects not being deleted +* Update readme +* Fix version constant + # 0.B.2 * Fix data directory not being set correctly by CMake; @@ -51,7 +51,8 @@ before installation, the program will fail to compile them during run-time. # INSTALLATION -The script "install.sh" will install the executable, the assets, the shaders... to the specified directories: +The script "install.sh" will install the executable, the assets, the shaders... +to the specified directories: ./install.sh [build directory] [binary directory] [data directory] diff --git a/bowshock/include/bow/base.hxx b/bowshock/include/bow/base.hxx index ce384d8..3c7589e 100644 --- a/bowshock/include/bow/base.hxx +++ b/bowshock/include/bow/base.hxx @@ -27,7 +27,7 @@ namespace bow { constexpr VersionType<::std::uint64_t> VERSION = { .major = 0x0u, .minor = 0xCu, - .patch = 0x1u, + .patch = 0x0u, }; constexpr bool DEBUG = bow_debug; @@ -44,7 +44,7 @@ namespace bow { }; enum struct World : ::std::uint8_t { - Ammonium_world, // ammonium world + Ammonium_world, Gas_giant, Ice_world, Rocky_world, @@ -68,22 +68,22 @@ namespace bow { }; enum struct Star : ::std::uint8_t { - A, // main sequence - B, // main sequence - C, // carbon - F, // main sequence - G, // main sequence - K, // main sequence - L, // brown dwarf - M, // main sequence - N, // neutron star - O, // main sequence - S, // carbon - T, // brown dwarf - W, // worm hole - X, // black hole - Y, // brown dwarf - Z, // white hole + A, // Main sequence + B, // Main sequence + C, // Carbon + F, // Main sequence + G, // Main sequence + K, // Main sequence + L, // Brown dwarf + M, // Main sequence + N, // Neutron star + O, // Main sequence + S, // Carbon + T, // Brown dwarf + W, // Worm hole + X, // Black hole + Y, // Brown dwarf + Z, // White hole }; enum struct Station : ::std::uint8_t { |