New Super Mario Bros. U Headers
Loading...
Searching...
No Matches
MapActor.h
Go to the documentation of this file.
1#pragma once
2
3#include <basis/seadTypes.h>
4
6{
7public:
8 class Profile
9 {
10 public:
11 Profile(s32 id)
12 : mID(id)
13 {
14 }
15
16 operator s32() const
17 {
18 return mID;
19 }
20
21 protected:
23 };
24
25public:
26 // Address 0x101ECD8C
27 static const Profile cProfileID[];
28};
Definition MapActor.h:9
Profile(s32 id)
Definition MapActor.h:11
Definition MapActor.h:6
static const Profile cProfileID[]
Definition MapActor.h:27