cleanup dead code
This commit is contained in:
parent
f2f4c3b036
commit
d3879c674a
|
|
@ -32,6 +32,7 @@ namespace Nz
|
|||
|
||||
// Editor events
|
||||
NazaraSignal(OnActionRegistered, const EditorAction::Properties&);
|
||||
|
||||
EditorBaseApplication();
|
||||
virtual ~EditorBaseApplication();
|
||||
|
||||
|
|
@ -64,6 +65,7 @@ namespace Nz
|
|||
|
||||
private:
|
||||
static EditorBaseApplication* s_instance;
|
||||
|
||||
std::unique_ptr<Nz::WindowSwapchain> m_windowSwapchain;
|
||||
std::vector<std::unique_ptr<Nz::EditorWindow>> m_windows;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,18 +7,5 @@ namespace NzEditor
|
|||
{
|
||||
public:
|
||||
MainWindow(Nz::EditorBaseApplication* app);
|
||||
|
||||
bool Quit();
|
||||
|
||||
bool NewLevel();
|
||||
bool OpenLevel();
|
||||
bool SaveLevel();
|
||||
|
||||
bool NewProject();
|
||||
bool OpenProject();
|
||||
bool SaveProject();
|
||||
|
||||
protected:
|
||||
void BuildMenuBar();
|
||||
};
|
||||
}
|
||||
|
|
@ -6,39 +6,4 @@ namespace NzEditor
|
|||
: Nz::EditorMainWindow(app, "MainWindow", { "General", "Plugins" })
|
||||
{
|
||||
}
|
||||
|
||||
bool MainWindow::Quit()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MainWindow::NewLevel()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MainWindow::OpenLevel()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MainWindow::SaveLevel()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MainWindow::NewProject()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MainWindow::OpenProject()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MainWindow::SaveProject()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue