2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 11:07:44 +00:00

Update HECL

Rename Editor
This commit is contained in:
2016-01-05 01:53:16 -08:00
parent 1f79f604af
commit f3f4b674a7
16 changed files with 62 additions and 62 deletions

View File

@@ -7,10 +7,10 @@
using YAMLNode = Athena::io::YAMLNode;
namespace RUDE
namespace URDE
{
Specter::View* ViewManager::BuildSpaceViews(RUDE::Space* space)
Specter::View* ViewManager::BuildSpaceViews(URDE::Space* space)
{
m_rootSpaceView = space->buildSpaceView(m_viewResources);
return m_rootSpaceView;
@@ -72,7 +72,7 @@ void ViewManager::DismissSplash()
ViewManager::ViewManager(HECL::Runtime::FileStoreManager& fileMgr, HECL::CVarManager& cvarMgr)
: m_fileStoreManager(fileMgr), m_cvarManager(cvarMgr), m_projManager(*this),
m_fontCache(fileMgr), m_translator(RUDE::SystemLocaleOrEnglish())
m_fontCache(fileMgr), m_translator(URDE::SystemLocaleOrEnglish())
{}
ViewManager::~ViewManager() {}
@@ -89,7 +89,7 @@ void ViewManager::pushRecentFile(const HECL::SystemString& path)
void ViewManager::init(boo::IApplication* app)
{
m_mainWindow = std::unique_ptr<boo::IWindow>(app->newWindow(_S("RUDE")));
m_mainWindow = std::unique_ptr<boo::IWindow>(app->newWindow(_S("URDE")));
m_mainWindow->showWindow();
m_mainWindow->setWaitCursor(true);