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 /modules | |
parent | 721c32ee2bb15ca16692dee848fc3190ed0b6a49 (diff) | |
parent | 5f56d385b04f4054ec86605fcda56ffeed4ca5f4 (diff) |
Merge pull request #57621 from akien-mga/core-split-rect2i-own-header
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdnative/gdnative/rect2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdnative/gdnative/rect2.cpp b/modules/gdnative/gdnative/rect2.cpp index f4674850e3..f836cb7486 100644 --- a/modules/gdnative/gdnative/rect2.cpp +++ b/modules/gdnative/gdnative/rect2.cpp @@ -31,6 +31,7 @@ #include "gdnative/rect2.h" #include "core/math/rect2.h" +#include "core/math/rect2i.h" static_assert(sizeof(godot_rect2) == sizeof(Rect2), "Rect2 size mismatch"); static_assert(sizeof(godot_rect2i) == sizeof(Rect2i), "Rect2i size mismatch"); |