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

Update submodules

This commit is contained in:
Jack Andersen
2015-12-08 15:04:50 -10:00
parent 39c170fe47
commit a0fd8977f8
5 changed files with 38 additions and 40 deletions

View File

@@ -19,8 +19,9 @@ class ViewManager : Specter::IViewManager
Specter::Space* m_space2;
HECL::CVar* m_cvPixelFactor;
HECL::CVar* m_test1;
HECL::CVar* m_test2;
bool m_updatePf = false;
float m_reqPf;
void SetupRootView();
public:
@@ -28,7 +29,11 @@ public:
: m_cvarManager(cvarMgr), m_fontCache(fileMgr) {}
Specter::RootView& rootView() const {return *m_rootView;}
void ResetResources();
void RequestPixelFactor(float pf)
{
m_reqPf = pf;
m_updatePf = true;
}
void init(boo::IApplication* app);
bool proc();