mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
implemented image reader and asset manager
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user