small fix

This commit is contained in:
MihailRis 2023-11-23 12:30:51 +03:00
parent 1cf4cb727f
commit 230d71ab49

View File

@ -10,15 +10,15 @@
#include <vector>
struct rectangle {
unsigned int idx;
int x;
int y;
int width;
int height;
int extX = 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){
}
};