diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-04 16:05:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 16:05:30 +0100 |
commit | 8495be9cece924b22a8148ce335d04836027bc40 (patch) | |
tree | 7808ce5fd0594fe76526a9192b497c418c36ce63 /core/variant | |
parent | 721c32ee2bb15ca16692dee848fc3190ed0b6a49 (diff) | |
parent | 5f56d385b04f4054ec86605fcda56ffeed4ca5f4 (diff) |
Merge pull request #57621 from akien-mga/core-split-rect2i-own-header
Diffstat (limited to 'core/variant')
-rw-r--r-- | core/variant/method_ptrcall.h | 1 | ||||
-rw-r--r-- | core/variant/variant.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/core/variant/method_ptrcall.h b/core/variant/method_ptrcall.h index 75a93ac4c8..d0acf60c22 100644 --- a/core/variant/method_ptrcall.h +++ b/core/variant/method_ptrcall.h @@ -31,7 +31,6 @@ #ifndef METHOD_PTRCALL_H #define METHOD_PTRCALL_H -#include "core/math/transform_2d.h" #include "core/object/object_id.h" #include "core/typedefs.h" #include "core/variant/variant.h" diff --git a/core/variant/variant.h b/core/variant/variant.h index 36fa755647..c8b3aa702f 100644 --- a/core/variant/variant.h +++ b/core/variant/variant.h @@ -39,8 +39,11 @@ #include "core/math/face3.h" #include "core/math/plane.h" #include "core/math/quaternion.h" +#include "core/math/rect2.h" +#include "core/math/rect2i.h" #include "core/math/transform_2d.h" #include "core/math/transform_3d.h" +#include "core/math/vector2.h" #include "core/math/vector3.h" #include "core/math/vector3i.h" #include "core/object/object_id.h" |