openmw-tes3coop/apps/openmw/mwrender/globalmap.hpp

24 lines
282 B
C++
Raw Normal View History

2012-09-20 11:56:37 +00:00
#ifndef _GAME_RENDER_GLOBALMAP_H
#define _GAME_RENDER_GLOBALMAP_H
#include <string>
namespace MWRender
{
class GlobalMap
{
public:
GlobalMap(const std::string& cacheDir);
void render();
private:
std::string mCacheDir;
};
}
#endif