summaryrefslogtreecommitdiffstats
path: root/editor/editor_atlas_packer.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-02-04 15:35:14 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-02-04 16:32:21 +0100
commite223bad86d6e5225aa205394d047714a92610967 (patch)
tree2ae7abe5edfd503d72e74f51040f15472c8c342c /editor/editor_atlas_packer.h
parent5f56d385b04f4054ec86605fcda56ffeed4ca5f4 (diff)
downloadredot-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.h5
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 {