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