rework on dat and spr loader

This commit is contained in:
Eduardo Bart
2011-08-15 16:15:49 -03:00
parent b21ccd16f9
commit 2e1a96c2df
43 changed files with 191 additions and 581 deletions

View File

@@ -37,7 +37,7 @@ void UIManager::resize(const Size& size)
m_rootWidget->resize(size);
}
void UIManager::inputEvent(const InputEvent& event)
void UIManager::inputEvent(const PlatformEvent& event)
{
// translate input event to ui events
if(m_rootWidget) {

View File

@@ -13,7 +13,7 @@ public:
void render();
void resize(const Size& size);
void inputEvent(const InputEvent& event);
void inputEvent(const PlatformEvent& event);
bool importStyles(const std::string& file);
void importStyleFromOTML(const OTMLNodePtr& styleNode);