2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 15:47:46 +00:00

Integrate Translator

This commit is contained in:
Jack Andersen
2015-12-30 17:20:52 -10:00
parent 028be337c6
commit defe2bb509
10 changed files with 90 additions and 21 deletions

View File

@@ -9,12 +9,13 @@ namespace RUDE
{
class SplashScreen;
class ViewManager : Specter::IViewManager
class ViewManager : public Specter::IViewManager
{
HECL::CVarManager& m_cvarManager;
ProjectManager m_projManager;
Specter::FontCache m_fontCache;
Specter::ViewResources m_viewResources;
Specter::Translator m_translator;
std::unique_ptr<boo::IWindow> m_mainWindow;
std::unique_ptr<Specter::RootView> m_rootView;
std::unique_ptr<SplashScreen> m_splash;
@@ -74,6 +75,7 @@ public:
}
ProjectManager& projectManager() {return m_projManager;}
const Specter::Translator* getTranslator() const {return &m_translator;}
void init(boo::IApplication* app);
bool proc();