diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2018-08-11 03:08:26 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2018-08-11 03:08:34 -0500 |
commit | cf136a91d60509a99f9ba47c7dbc6fbb9cb6240d (patch) | |
tree | 6d70ecceb1f52c7eb3ad6f4d6fc59ab8d1b756b6 /servers | |
parent | 14fe7230f4db402fba1efb74a1a17ce8a4dd20bb (diff) |
[Core] Completely kill math_2d.h, change includes
Diffstat (limited to 'servers')
-rw-r--r-- | servers/physics_2d/broad_phase_2d_sw.h | 2 | ||||
-rw-r--r-- | servers/visual_server.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/servers/physics_2d/broad_phase_2d_sw.h b/servers/physics_2d/broad_phase_2d_sw.h index 80ae970624..d7d236c4c6 100644 --- a/servers/physics_2d/broad_phase_2d_sw.h +++ b/servers/physics_2d/broad_phase_2d_sw.h @@ -31,8 +31,8 @@ #ifndef BROAD_PHASE_2D_SW_H #define BROAD_PHASE_2D_SW_H -#include "math_2d.h" #include "math_funcs.h" +#include "rect2.h" class CollisionObject2DSW; diff --git a/servers/visual_server.h b/servers/visual_server.h index 0ec902c18c..fd7f96339e 100644 --- a/servers/visual_server.h +++ b/servers/visual_server.h @@ -34,9 +34,9 @@ #include "bsp_tree.h" #include "geometry.h" #include "image.h" -#include "math_2d.h" #include "object.h" #include "rid.h" +#include "transform_2d.h" #include "variant.h" /** |