diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2025-06-28 23:06:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-28 18:06:42 -0400 |
| commit | d45353ee332248b82c3138d81e620b07cd10ffda (patch) | |
| tree | 6588a3b1e80380a5b340c785d9a77af83de4cc9f /include | |
| parent | b5f980570cf2c621a254be69d046f97c99a580d9 (diff) | |
Cleanup extracted colliders 3: Use `HIT_SPECIAL_EFFECT_`, `HIT_BACKLASH_` names (#2646)
* Cleanup extracted colliders 3: Use `HIT_SPECIAL_EFFECT_`, `HIT_BACKLASH_` names
* revert removing FLARE_DANCER_BODY_DMG (oops)
Diffstat (limited to 'include')
| -rw-r--r-- | include/collision_check.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/collision_check.h b/include/collision_check.h index 194ae1e69..d3d756abc 100644 --- a/include/collision_check.h +++ b/include/collision_check.h @@ -85,7 +85,10 @@ typedef enum HitSpecialEffect { HIT_SPECIAL_EFFECT_FIRE, HIT_SPECIAL_EFFECT_ICE, HIT_SPECIAL_EFFECT_ELECTRIC, - HIT_SPECIAL_EFFECT_KNOCKBACK + HIT_SPECIAL_EFFECT_KNOCKBACK, + HIT_SPECIAL_EFFECT_7 = 7, // Same effect as `HIT_SPECIAL_EFFECT_NONE` + HIT_SPECIAL_EFFECT_8, // Same effect as `HIT_SPECIAL_EFFECT_NONE` + HIT_SPECIAL_EFFECT_9 // Same effect as `HIT_SPECIAL_EFFECT_NONE` } HitSpecialEffect; typedef struct ColliderElementDamageInfoAT { |
