diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-24 22:49:47 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-24 22:49:47 +1000 |
commit | 7eb010d4a1c6a90d5040b3ec2e7d189fb387b9b2 (patch) | |
tree | 44445bce5cee5387511ac0045072539f5a928294 /source/core/StarAssetPath.hpp | |
parent | aa08eaac993a309d3aebc2cd4321513a1e413254 (diff) |
Pretty much working now
Diffstat (limited to 'source/core/StarAssetPath.hpp')
-rw-r--r-- | source/core/StarAssetPath.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/core/StarAssetPath.hpp b/source/core/StarAssetPath.hpp index 3ca3f60..fd77005 100644 --- a/source/core/StarAssetPath.hpp +++ b/source/core/StarAssetPath.hpp @@ -2,6 +2,7 @@ #define STAR_ASSET_PATH_HPP #include "StarDirectives.hpp" +#include "StarHash.hpp" namespace Star { @@ -64,6 +65,11 @@ struct AssetPath { std::ostream& operator<<(std::ostream& os, AssetPath const& rhs); +template <> +struct hash<AssetPath> { + size_t operator()(AssetPath const& s) const; +}; + } #endif
\ No newline at end of file |