Files
lime/project/include/graphics/Image.h
2019-04-10 16:26:03 -07:00

37 lines
422 B
C++

#ifndef LIME_GRAPHICS_IMAGE_H
#define LIME_GRAPHICS_IMAGE_H
#include <graphics/ImageBuffer.h>
#include <math/Rectangle.h>
#include <system/CFFI.h>
namespace lime {
struct Image {
hl_type* t;
ImageBuffer* buffer;
bool dirty;
int height;
int offsetX;
int offsetY;
Rectangle* rect;
venum* type;
int version;
int width;
double x;
double y;
Image (value image);
~Image ();
};
}
#endif