mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-16 16:35:10 +00:00
19 lines
No EOL
539 B
C++
19 lines
No EOL
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;
|
|
}; |