mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 20:55:17 +00:00
17 lines
402 B
C++
17 lines
402 B
C++
|
#pragma once
|
||
|
|
||
|
#include "game/Layouts/CommonVerticalList.h"
|
||
|
|
||
|
class GameModeConfigMenu {
|
||
|
public:
|
||
|
GameModeConfigMenu() = default;
|
||
|
|
||
|
virtual void initMenu(const al::LayoutInitInfo &initInfo) {return;}
|
||
|
|
||
|
virtual bool updateMenu(int selectIndex) {return false;}
|
||
|
|
||
|
virtual const sead::WFixedSafeString<0x200>* getStringData() {return nullptr;}
|
||
|
|
||
|
virtual const int getMenuSize() {return 0;}
|
||
|
|
||
|
};
|