1 2 3 4 5 6 7 8 9 10 11
#ifndef SFML_VECTOR3_H #define SFML_VECTOR3_H typedef struct { float x; float y; float z; } sfVector3f; #endif // SFML_VECTOR3_H