diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8062641e..06148197 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -17,6 +17,7 @@ set( app/editor/palette_editor.cc app/editor/screen_editor.cc app/editor/sprite_editor.cc + app/editor/modules/tile16_editor.cc ) set( diff --git a/src/app/editor/modules/tile16_editor.cc b/src/app/editor/modules/tile16_editor.cc new file mode 100644 index 00000000..25df916f --- /dev/null +++ b/src/app/editor/modules/tile16_editor.cc @@ -0,0 +1,7 @@ + +#include "tile16_editor.h" + +absl::Status Tile16Editor::Update() { + // TODO: Implement the Update method for the Tile16Editor class. + return absl::OkStatus(); +} diff --git a/src/app/editor/modules/tile16_editor.h b/src/app/editor/modules/tile16_editor.h new file mode 100644 index 00000000..a079e9eb --- /dev/null +++ b/src/app/editor/modules/tile16_editor.h @@ -0,0 +1,26 @@ +#ifndef YAZE_APP_EDITOR_TILE16EDITOR_H +#define YAZE_APP_EDITOR_TILE16EDITOR_H + +#include + +#include + +#include "absl/status/status.h" +#include "absl/status/statusor.h" +#include "app/core/editor.h" +#include "app/core/pipeline.h" +#include "app/editor/palette_editor.h" +#include "app/gfx/bitmap.h" +#include "app/gfx/snes_palette.h" +#include "app/gfx/snes_tile.h" +#include "app/gui/canvas.h" +#include "app/gui/icons.h" +#include "app/rom.h" +#include "app/zelda3/overworld.h" + +class Tile16Editor { + public: + absl::Status Update(); +}; + +#endif // YAZE_APP_EDITOR_TILE16EDITOR_H \ No newline at end of file