diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-02-04 15:35:14 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-02-04 16:32:21 +0100 |
commit | e223bad86d6e5225aa205394d047714a92610967 (patch) | |
tree | 2ae7abe5edfd503d72e74f51040f15472c8c342c /editor/editor_atlas_packer.h | |
parent | 5f56d385b04f4054ec86605fcda56ffeed4ca5f4 (diff) | |
download | redot-engine-e223bad86d6e5225aa205394d047714a92610967.tar.gz |
Core: Move Vector2i to its own `vector2i.h` header
Also reduce interdependencies and clean up a bit.
Diffstat (limited to 'editor/editor_atlas_packer.h')
-rw-r--r-- | editor/editor_atlas_packer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/editor_atlas_packer.h b/editor/editor_atlas_packer.h index 133c516d80..169a6bead8 100644 --- a/editor/editor_atlas_packer.h +++ b/editor/editor_atlas_packer.h @@ -31,11 +31,12 @@ #ifndef EDITOR_ATLAS_PACKER_H #define EDITOR_ATLAS_PACKER_H -#include "core/math/vector2.h" - #include "core/templates/vector.h" #include "scene/resources/bit_map.h" +struct Vector2; +struct Vector2i; + class EditorAtlasPacker { public: struct Chart { |