X-Git-Url: https://git.jsancho.org/?p=c-irrlicht.git;a=blobdiff_plain;f=include%2Fvector3d.h;fp=include%2Fvector3d.h;h=a03a82519faf466bc25863917ff1980010445180;hp=fd9402669f7210f323a5c38cd9a7d56d214dc153;hb=59b625c207d1ee8368f04f3c4d675fa393fe94f4;hpb=7e46627fbadd2bcf8169ae429e6fe0a546d2797a diff --git a/include/vector3d.h b/include/vector3d.h index fd94026..a03a825 100644 --- a/include/vector3d.h +++ b/include/vector3d.h @@ -22,11 +22,13 @@ #ifndef __C_IRR_VECTOR_3D_H_INCLUDED__ #define __C_IRR_VECTOR_3D_H_INCLUDED__ +#include + typedef struct { - float x; - float y; - float z; + float_t x; + float_t y; + float_t z; } irr_core_vector3df; #endif