New Super Mario Bros. U Headers
Loading...
Searching...
No Matches
FieldGameMode.h
Go to the documentation of this file.
1#pragma once
2
3#include <basis/seadTypes.h>
4
6{
7public:
17 static_assert(sizeof(Mode) == 4);
18
19public:
20 Mode getMode() const
21 {
22 return mMode;
23 }
24
25 // Address: 0x024C28D8
26 void setMode(Mode mode);
27
28 // Address: 0x024C28EC
29 bool isMiniGame() const;
30
31 // Address: 0x024C2910
32 bool isWmMode() const;
33
34 // Address: 0x024C2924
35 bool isDvMiiMode() const;
36
37private:
39};
40static_assert(sizeof(FieldGameMode) == 4);
Definition FieldGameMode.h:6
bool isDvMiiMode() const
Mode
Definition FieldGameMode.h:9
@ cStory
Definition FieldGameMode.h:10
@ cBoostRush
Definition FieldGameMode.h:11
@ cNum
Definition FieldGameMode.h:15
@ cCoinEdit
Definition FieldGameMode.h:13
@ cCoinBattle
Definition FieldGameMode.h:12
@ cChallenge
Definition FieldGameMode.h:14
void setMode(Mode mode)
bool isWmMode() const
Mode getMode() const
Definition FieldGameMode.h:20
bool isMiniGame() const
Mode mMode
Definition FieldGameMode.h:38