Rename Editor class to MasterEditor

This commit is contained in:
Justin Scofield
2022-07-19 20:31:49 -04:00
parent 8af096c1ae
commit b0c79a42c5
5 changed files with 28 additions and 37 deletions

View File

@@ -10,7 +10,7 @@
#include <memory>
#include "app/editor/editor.h"
#include "app/editor/master_editor.h"
#include "gui/icons.h"
#include "gui/style.h"
@@ -45,7 +45,7 @@ class Controller {
};
bool active_;
editor::Editor editor_;
editor::MasterEditor master_editor_;
std::shared_ptr<SDL_Window> sdl_window_;
std::shared_ptr<SDL_Renderer> sdl_renderer_;
};