2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 19:04:56 +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

@@ -6,7 +6,7 @@
#include <functional>
#include "ViewManager.hpp"
namespace RUDE
namespace URDE
{
struct Application : boo::IApplicationCallback
{
@@ -17,7 +17,7 @@ struct Application : boo::IApplicationCallback
bool m_running = true;
Application() :
m_fileMgr(_S("rude")),
m_fileMgr(_S("urde")),
m_cvarManager(m_fileMgr),
m_viewManager(m_fileMgr, m_cvarManager) {}
@@ -52,9 +52,9 @@ int main(int argc, const boo::SystemChar** argv)
#endif
{
LogVisor::RegisterConsoleLogger();
RUDE::Application appCb;
URDE::Application appCb;
int ret = boo::ApplicationRun(boo::IApplication::EPlatformType::Auto,
appCb, _S("rude"), _S("RUDE"), argc, argv, false);
appCb, _S("urde"), _S("URDE"), argc, argv, false);
printf("IM DYING!!\n");
return ret;
}