fix content control (#538)

* update ContentControl
* feat: more debug logging
* fix engine paths
This commit is contained in:
MihailRis
2025-07-01 23:38:00 +03:00
committed by GitHub
parent af3c315c04
commit 215ae02fa9
7 changed files with 30 additions and 18 deletions
+5 -2
View File
@@ -40,8 +40,10 @@ public:
void loadContent();
std::vector<ContentPack>& getContentPacks();
std::vector<ContentPack> getAllContentPacks();
void setContentPacksRaw(std::vector<ContentPack>&& packs);
const std::vector<ContentPack>& getContentPacks() const;
const std::vector<ContentPack>& getAllContentPacks() const;
PacksManager& scan();
private:
@@ -52,4 +54,5 @@ private:
std::vector<std::string> basePacks;
std::unique_ptr<PacksManager> manager;
std::vector<ContentPack> contentPacks;
std::vector<ContentPack> allPacks; // includes 'core'
};