Files
lime/project/include/graphics/Image.h
Joshua Granick c96cb19ad1 Merge changes
2016-12-07 22:11:02 -08:00

38 lines
373 B
C++

#ifndef LIME_GRAPHICS_IMAGE_H
#define LIME_GRAPHICS_IMAGE_H
#include <hx/CFFI.h>
#include <graphics/ImageBuffer.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