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
+17
View File
@@ -0,0 +1,17 @@
#ifndef IMAGE_READER_H
#define IMAGE_READER_H
#include "util.h"
#include "imageAsset.h"
namespace vb01{
class ImageReader{
public:
static ImageReader* getSingleton();
ImageAsset* readImage(std::string, bool);
private:
ImageReader(){}
};
}
#endif