iw4x-client/iw4/Components/Maps.hpp
2015-12-26 02:51:58 +01:00

16 lines
280 B
C++

namespace Components
{
class Maps : public Component
{
public:
Maps();
const char* GetName() { return "Maps"; };
private:
static void* WorldMP;
static void* WorldSP;
static void GetBSPName(char* buffer, size_t size, const char* format, const char* mapname);
};
}