diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2018-05-07 16:35:17 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2018-08-10 14:59:29 -0500 |
commit | 28fc19533902dbc2614c949486bb4edf9450cc05 (patch) | |
tree | 999bb3f4fd762b98d1b6432089ff567d9cbaf4fb /modules/gdnative | |
parent | 9d1b5f4e3b58d9287addc723d8ce34626523a302 (diff) |
[Core] Change math_2d includes to vector2 includes where relevant
Diffstat (limited to 'modules/gdnative')
-rw-r--r-- | modules/gdnative/gdnative/pool_arrays.cpp | 2 | ||||
-rw-r--r-- | modules/gdnative/gdnative/vector2.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/gdnative/pool_arrays.cpp b/modules/gdnative/gdnative/pool_arrays.cpp index 6688be1a0d..2b6b7a823a 100644 --- a/modules/gdnative/gdnative/pool_arrays.cpp +++ b/modules/gdnative/gdnative/pool_arrays.cpp @@ -35,7 +35,7 @@ #include "dvector.h" #include "core/color.h" -#include "core/math/math_2d.h" +#include "core/math/vector2.h" #include "core/math/vector3.h" #ifdef __cplusplus diff --git a/modules/gdnative/gdnative/vector2.cpp b/modules/gdnative/gdnative/vector2.cpp index 9e40b42373..c7902e06ee 100644 --- a/modules/gdnative/gdnative/vector2.cpp +++ b/modules/gdnative/gdnative/vector2.cpp @@ -30,7 +30,7 @@ #include "gdnative/vector2.h" -#include "core/math/math_2d.h" +#include "core/math/vector2.h" #include "core/variant.h" #ifdef __cplusplus |