small fix
This commit is contained in:
@@ -10,15 +10,15 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
struct rectangle {
|
struct rectangle {
|
||||||
|
unsigned int idx;
|
||||||
int x;
|
int x;
|
||||||
int y;
|
int y;
|
||||||
int width;
|
int width;
|
||||||
int height;
|
int height;
|
||||||
int extX = 0;
|
int extX = 0;
|
||||||
int extY = 0;
|
int extY = 0;
|
||||||
uint idx;
|
|
||||||
|
|
||||||
rectangle(uint idx, int x, int y, int width, int height)
|
rectangle(unsigned int idx, int x, int y, int width, int height)
|
||||||
: idx(idx), x(x), y(y), width(width), height(height){
|
: idx(idx), x(x), y(y), width(width), height(height){
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user