2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-05 03:55:52 +00:00

Merge pull request #140 from lioncash/enum-class

CScriptDock: Make EDockState an enum class
This commit is contained in:
Phillip Stephens 2020-02-03 14:43:28 -08:00 committed by GitHub
commit 06d7a3e00a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;