1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef SFML_RECT_H #define SFML_RECT_H typedef struct { float left; float top; float width; float height; } sfFloatRect; typedef struct { int left; int top; int width; int height; } sfIntRect; #endif // SFML_RECT_H