questlog module complete

This commit is contained in:
Eduardo Bart
2012-04-30 23:00:07 -03:00
parent f290d821f1
commit 2f0a151fed
9 changed files with 181 additions and 26 deletions

View File

@@ -33,7 +33,7 @@ public:
static TexturePtr loadPNG(std::stringstream& file);
private:
std::map<std::string, TextureWeakPtr> m_textures;
std::unordered_map<std::string, TextureWeakPtr> m_textures;
};
extern TextureManager g_textures;

View File

@@ -82,7 +82,7 @@ private:
Boolean<false> m_hoverUpdateScheduled;
bool m_isOnInputEvent;
Boolean<false> m_drawDebugBoxes;
std::map<std::string, OTMLNodePtr> m_styles;
std::unordered_map<std::string, OTMLNodePtr> m_styles;
};
extern UIManager g_ui;