Merge pull request #88 from devZoGok/imp-87-asset-listing

Imp 87 asset listing
This commit is contained in:
devZoGok
2025-03-28 18:22:28 +00:00
committed by GitHub
+1 -1
View File
@@ -11,6 +11,7 @@ namespace vb01{
class AssetManager{
public:
static AssetManager* getSingleton();
void readDir(std::string, std::vector<std::string>&, 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<std::string>&, bool);
std::vector<Asset*> assets;
};