aboutsummaryrefslogtreecommitdiff
path: root/source/Utils.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-05-22 23:05:03 -0700
committerrtk0c <[email protected]>2022-05-22 23:05:03 -0700
commit123f741e3f5374b93ac39887b62bfa0d66762ae2 (patch)
treecedbc4b2dd87e2caadfde48a0c12a0336672bdd3 /source/Utils.hpp
parentc568f0a8c9f0aef00c770b494ee1ff3a89ab48de (diff)
Changeset: 36 Add basic machinery for levels (no saving/loading yet)
Diffstat (limited to 'source/Utils.hpp')
-rw-r--r--source/Utils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Utils.hpp b/source/Utils.hpp
index 63e610f..9f28aad 100644
--- a/source/Utils.hpp
+++ b/source/Utils.hpp
@@ -31,6 +31,8 @@ void HashCombine(std::size_t& seed, const T& v) {
seed ^= std::hash<T>{}(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
+std::string MakeRandomNumberedName(const char* tag);
+
} // namespace Utils
struct StringHash {