diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-24 19:41:52 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-24 19:41:52 +1000 |
commit | 7bde128a87268751e1f46174a64ffd78b03bf8bc (patch) | |
tree | b27dd239831fa803d019e35f08f209b1d9e091ea /source/core/StarAssetPath.hpp | |
parent | 51a9de3af37eb8a6844a2dd5f3f568f3956726db (diff) |
DirectivesGroup prototype
Diffstat (limited to 'source/core/StarAssetPath.hpp')
-rw-r--r-- | source/core/StarAssetPath.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/core/StarAssetPath.hpp b/source/core/StarAssetPath.hpp index 9da30e7..3ca3f60 100644 --- a/source/core/StarAssetPath.hpp +++ b/source/core/StarAssetPath.hpp @@ -53,10 +53,11 @@ struct AssetPath { AssetPath() = default; AssetPath(String const& path); - + AssetPath(String&& basePath, Maybe<String>&& subPath, DirectivesGroup&& directives); + AssetPath(const String& basePath, const Maybe<String>& subPath, const DirectivesGroup& directives); String basePath; Maybe<String> subPath; - NestedDirectives directives; + DirectivesGroup directives; bool operator==(AssetPath const& rhs) const; }; |