1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef SFML_VECTOR2_H #define SFML_VECTOR2_H struct sfVector2i { int x; int y; }; struct sfVector2u { unsigned int x; unsigned int y; }; struct sfVector2f { float x; float y; }; #endif // SFML_VECTOR2_H