mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
18 lines
279 B
C++
18 lines
279 B
C++
#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
|