[nostalgia/core/studio] Add PaletteEditor

This commit is contained in:
2020-03-29 23:34:24 -05:00
parent 4c6e053e81
commit 2e7a81563d
8 changed files with 401 additions and 9 deletions
+7
View File
@@ -8,6 +8,7 @@
#include "new_tilesheet_wizard.hpp"
#include "import_tilesheet_wizard.hpp"
#include "paletteeditor.hpp"
#include "tilesheeteditor.hpp"
#include "plugin.hpp"
@@ -50,6 +51,12 @@ QVector<studio::EditorMaker> Plugin::editors(const studio::Context *ctx) {
[ctx](QString path) {
return new TileSheetEditor(path, ctx, ctx->tabParent);
}
},
{
{"npal"},
[ctx](QString path) {
return new PaletteEditor(path, ctx, ctx->tabParent);
}
}
};
}