mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
24 lines
282 B
C++
24 lines
282 B
C++
|
#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
|
||
|
|