X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=include%2Fvector3d.h;h=fd9402669f7210f323a5c38cd9a7d56d214dc153;hb=d468712229faeb7fdcce0836145572e0018d62d0;hp=6019d94c753d9239594c5d2c721a8c6b4275f6b2;hpb=8c7371f02417bb3a9aaafb9f084b97cc89f09da8;p=c-irrlicht.git diff --git a/include/vector3d.h b/include/vector3d.h index 6019d94..fd94026 100644 --- a/include/vector3d.h +++ b/include/vector3d.h @@ -19,14 +19,14 @@ . */ -#ifndef __C_IRR_POINT_3D_H_INCLUDED__ -#define __C_IRR_POINT_3D_H_INCLUDED__ +#ifndef __C_IRR_VECTOR_3D_H_INCLUDED__ +#define __C_IRR_VECTOR_3D_H_INCLUDED__ typedef struct { - float_t x; - float_t y; - float_t z; + float x; + float y; + float z; } irr_core_vector3df; #endif