implemented image reader and asset manager

This commit is contained in:
devZoGok
2022-03-02 20:24:04 +02:00
parent f64a3e13df
commit 82bf653e68
11 changed files with 171 additions and 22 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef ASSET_H
#define ASSET_H
#include <string>
namespace vb01{
struct Asset{
std::string path;
};
}
#endif