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

More CPlayer implementations

This commit is contained in:
Jack Andersen
2017-08-18 20:52:13 -10:00
parent f8f7da070f
commit 3fa80babf6
23 changed files with 1625 additions and 824 deletions

View File

@@ -20,7 +20,7 @@ class CDamageInfo
float xc_radiusDamage;
float x10_radius;
float x14_knockback;
bool x18_ = false;
bool x18_noImmunity = false;
public:
CDamageInfo() = default;
@@ -50,7 +50,7 @@ public:
float GetDamage(const CDamageVulnerability& dVuln) const;
float GetRadiusDamage() const { return xc_radiusDamage; }
float GetRadiusDamage(const CDamageVulnerability& dVuln) const;
bool GetX18() const { return x18_; }
bool NoImmunity() const { return x18_noImmunity; }
};
}