Files
lime/project/include/graphics/Image.h
2015-07-21 11:09:35 -07:00

39 lines
403 B
C++

#ifndef LIME_GRAPHICS_IMAGE_H
#define LIME_GRAPHICS_IMAGE_H
#include <hx/CFFI.h>
#include <graphics/ImageBuffer.h>
#include <utils/ByteArray.h>
namespace lime {
class Image {
public:
Image ();
Image (value image);
~Image ();
ImageBuffer *buffer;
int height;
int offsetX;
int offsetY;
int width;
private:
value mValue;
};
}
#endif