]> git.jsancho.org Git - c-irrlicht.git/blobdiff - include/vector2d.h
C types
[c-irrlicht.git] / include / vector2d.h
index b3ae14921cbfdad20af5e4543b5d378352164e95..2a92c642b48ff46ed12fc7d42b5113bcf8bf9c42 100644 (file)
 #ifndef __C_IRR_VECTOR_2D_H_INCLUDED__
 #define __C_IRR_VECTOR_2D_H_INCLUDED__
 
+#include <math.h>
+
 typedef struct
 {
-  float x;
-  float y;
+  float_t x;
+  float_t y;
 } irr_core_vector2df;
 
 #endif