From dd360d05ea7b8c5d07a172661090eb77df76c1d5 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Fri, 28 Mar 2025 20:21:10 +0200 Subject: [PATCH] publised method --- assetManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assetManager.h b/assetManager.h index d84e4f7..5223a5f 100644 --- a/assetManager.h +++ b/assetManager.h @@ -11,6 +11,7 @@ namespace vb01{ class AssetManager{ public: static AssetManager* getSingleton(); + void readDir(std::string, std::vector&, bool); void load(std::string, bool = false); void editAsset(std::string, Asset&); Asset* getAsset(std::string); @@ -19,7 +20,6 @@ namespace vb01{ inline int getNumAssets(){return assets.size();} private: AssetManager(){} - void readDir(std::string, std::vector&, bool); std::vector assets; };