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
+14
View File
@@ -0,0 +1,14 @@
#ifndef MODEL_ASSET_H
#define MODEL_ASSET_H
#include "asset.h"
namespace vb01{
class Node;
struct ModelAsset : public Asset{
Node *rootNode;
};
}
#endif