2017-01-20 16:41:03 -05:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
class ArenaLength : public Component
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ArenaLength();
|
|
|
|
|
2023-03-17 08:46:29 -04:00
|
|
|
static Game::newMapArena_t NewArenas[];
|
|
|
|
static char* NewArenaInfos[];
|
2017-01-19 16:23:59 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void ArenaMapOffsetHook1();
|
|
|
|
static void ArenaMapOffsetHook2();
|
|
|
|
static void ArenaMapOffsetHook3();
|
|
|
|
static void ArenaMapOffsetHook4();
|
|
|
|
};
|
|
|
|
}
|