small fix

This commit is contained in:
MihailRis
2023-11-23 12:30:51 +03:00
parent 1cf4cb727f
commit 230d71ab49
+2 -2
View File
@@ -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){
} }
}; };