mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
10 lines
No EOL
343 B
C++
10 lines
No EOL
343 B
C++
#pragma once
|
|
|
|
class WorldList {
|
|
public:
|
|
const char *getWorldDevelopName(int) const;
|
|
int tryFindWorldIndexByStageName(char const *stageName) const;
|
|
int getMoonRockScenarioNo(int worldId) const;
|
|
int findUseScenarioNo(const char *stageName) const;
|
|
bool checkIsMainStage(char const *stageName) const;
|
|
}; |