iw4x-client/iw4/Components/Maps.hpp

16 lines
280 B
C++
Raw Normal View History

2015-12-25 20:51:58 -05:00
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);
};
}