2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 20:27:43 +00:00

Merge pull request #140 from lioncash/enum-class

CScriptDock: Make EDockState an enum class
This commit is contained in:
2020-02-03 14:43:28 -08:00
committed by GitHub

View File

@@ -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;