Remove unused includes and clean up header files

This commit is contained in:
scawful
2025-01-16 03:44:37 -05:00
parent d9cc92edca
commit c8883a1e54
30 changed files with 21 additions and 120 deletions

View File

@@ -1,6 +1,9 @@
#ifndef YAZE_APP_EDITOR_SPRITE_EDITOR_H
#define YAZE_APP_EDITOR_SPRITE_EDITOR_H
#include <cstdint>
#include <vector>
#include "absl/status/status.h"
#include "app/editor/sprite/zsprite.h"
#include "app/editor/editor.h"
@@ -112,4 +115,4 @@ class SpriteEditor : public SharedRom, public Editor {
} // namespace editor
} // namespace yaze
#endif // YAZE_APP_EDITOR_SPRITE_EDITOR_H
#endif // YAZE_APP_EDITOR_SPRITE_EDITOR_H

View File

@@ -1,7 +1,6 @@
#ifndef YAZE_APP_EDITOR_SPRITE_ZSPRITE_H
#define YAZE_APP_EDITOR_SPRITE_ZSPRITE_H
#include <algorithm>
#include <cstdint>
#include <fstream>
#include <string>
@@ -9,8 +8,6 @@
#include "app/core/constants.h"
#include "absl/status/status.h"
#include "app/gfx/snes_tile.h"
#include "imgui/imgui.h"
namespace yaze {
namespace editor {