feat: read from server macros folder as well (#1906)

This commit is contained in:
David Markowitz
2025-10-11 15:33:38 -07:00
committed by GitHub
parent ff645a6662
commit fd6029ae10
2 changed files with 24 additions and 15 deletions

View File

@@ -81,6 +81,9 @@ public:
[[nodiscard]]
AssetStream GetFile(const char* name) const;
[[nodiscard]]
AssetStream GetFile(const std::string& name) const { return GetFile(name.c_str()); };
private:
void LoadPackIndex();