#ifndef GAME_MWWORLD_FALLBACK_H #define GAME_MWWORLD_FALLBACK_H #include #include #include namespace MWWorld { class Fallback { const std::map mFallbackMap; public: Fallback(const std::map& fallback); std::string getFallbackString(const std::string& fall) const; float getFallbackFloat(const std::string& fall) const; int getFallbackInt(const std::string& fall) const; bool getFallbackBool(const std::string& fall) const; Ogre::ColourValue getFallbackColour(const std::string& fall) const; }; } #endif