iw4x-client/src/Components/Modules/ArenaLength.hpp

21 lines
417 B
C++
Raw Normal View History

2017-01-19 16:23:59 -05:00
namespace Components
{
class ArenaLength : public Component
{
public:
ArenaLength();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
2017-01-20 08:36:52 -05:00
const char* getName() override { return "ArenaLength"; };
2017-01-19 16:23:59 -05:00
#endif
static Game::newMapArena_t NewArenas[128];
private:
static void ArenaMapOffsetHook1();
static void ArenaMapOffsetHook2();
static void ArenaMapOffsetHook3();
static void ArenaMapOffsetHook4();
};
}