diff options
Diffstat (limited to 'src/render/image.h')
-rw-r--r-- | src/render/image.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/render/image.h b/src/render/image.h deleted file mode 100644 index 063f776..0000000 --- a/src/render/image.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef __JIN_IMAGE_H -#define __JIN_IMAGE_H -#include "libs/GLee/GLee.h" -#include "color.h" -#include "drawable.h" -namespace jin -{ -namespace render -{ - class Image: public Drawable - { - public: - Image(); - ~Image(); - - // just like Image() - void init(); - - // load from file - bool loadf(const char* f); - - // load from memory - bool loadb(const char* b, int size); - - color getPixel(int x, int y); - - private: - - color* pixels; - }; -} -} - -#endif
\ No newline at end of file |