diff options
| author | Tal Hayon <talhayon1@gmail.com> | 2022-01-29 16:21:57 +0200 |
|---|---|---|
| committer | Tal Hayon <talhayon1@gmail.com> | 2022-01-30 00:32:10 +0200 |
| commit | b4f8429a2c951dbf6b92edd865f6a63c166301cb (patch) | |
| tree | 898ba9d60e688da0ba432f7d70e421c898ea34da /include/player.h | |
| parent | d34aa9166f5d9f7958e586ae1daee3224eb11fa5 (diff) | |
Use PlayerFlags where possible
Diffstat (limited to 'include/player.h')
| -rw-r--r-- | include/player.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/player.h b/include/player.h index b0658c39..568d614f 100644 --- a/include/player.h +++ b/include/player.h @@ -96,6 +96,7 @@ typedef enum { enum PlayerFlags { PL_BUSY = 0x1, + PL_FLAGS2 = 0x2, PL_DROWNING = 0x4, PL_NO_CAP = 0x8, PL_CAPTURED = 0x10, @@ -108,6 +109,9 @@ enum PlayerFlags { PL_FROZEN = 0x800, PL_IN_MINECART = 0x1000, PL_DRUGGED = 0x4000, + PL_FLAGS8000 = 0x8000, + PL_FLAGS10000 = 0x10000, + PL_FLAGS20000 = 0x20000, PL_ROLLING = 0x40000, PL_MOLDWORM_CAPTURED = 0x80000, PL_IN_HOLE = 0x100000, @@ -115,6 +119,7 @@ enum PlayerFlags { PL_CLONING = 0x400000, PL_USE_LANTERN = 0x800000, PL_PARACHUTE = 0x1000000, + PL_FLAGS2000000 = 0x2000000, PL_ENTER_MINECART = 0x4000000, PL_SWORD_THRUST = 0x8000000, PL_USE_OCARINA = 0x10000000, |
