You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
282 B
C++
24 lines
282 B
C++
12 years ago
|
#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
|
||
|
|