mirror of https://github.com/AxioDL/metaforce.git
CScriptDock: Make EDockState an enum class
Makes the enum type strongly typed. All usages currently allow for this anyways.
This commit is contained in:
parent
cbf7140d21
commit
9a8f99faa5
|
@ -8,7 +8,7 @@
|
|||
namespace urde {
|
||||
|
||||
class CScriptDock : public CPhysicsActor {
|
||||
enum EDockState { Idle, PlayerTouched, EnterNextArea, Three };
|
||||
enum class EDockState { Idle, PlayerTouched, EnterNextArea, Three };
|
||||
|
||||
friend class CScriptDoor;
|
||||
s32 x258_dockReferenceCount;
|
||||
|
|
Loading…
Reference in New Issue