mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
19 lines
539 B
C++
19 lines
539 B
C++
|
#pragma once
|
||
|
|
||
|
#include "gamemode/GameModeConfigMenu.hpp"
|
||
|
#include "game/Layouts/CommonVerticalList.h"
|
||
|
#include "server/gamemode/GameModeBase.hpp"
|
||
|
|
||
|
class HideAndSeekConfigMenu : public GameModeConfigMenu {
|
||
|
public:
|
||
|
HideAndSeekConfigMenu();
|
||
|
|
||
|
void initMenu(const al::LayoutInitInfo &initInfo) override;
|
||
|
const sead::WFixedSafeString<0x200> *getStringData() override;
|
||
|
bool updateMenu(int selectIndex) override;
|
||
|
|
||
|
const int getMenuSize() override { return mItemCount; }
|
||
|
|
||
|
private:
|
||
|
static constexpr int mItemCount = 2;
|
||
|
};
|