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

More loader imps

This commit is contained in:
2016-05-20 02:17:51 -07:00
parent 89e836bdac
commit 27bee1cc35
11 changed files with 150 additions and 5 deletions

View File

@@ -7,6 +7,7 @@
namespace urde
{
class CDamageVulnerability;
class CDamageInfo
{
EWeaponType x0_type = EWeaponType::None;
@@ -20,8 +21,8 @@ class CDamageInfo
};
u8 _dummy = 0;
};
float x8_damage1;
float xc_damage2;
float x8_damage;
float xc_radiusDamage;
float x10_radius;
float x14_knockback;
bool x18_ = false;
@@ -31,11 +32,14 @@ public:
{
in.readUint32Big();
x0_type = EWeaponType(in.readUint32Big());
x8_damage1 = in.readFloatBig();
xc_damage2 = x8_damage1;
x8_damage = in.readFloatBig();
xc_radiusDamage = x8_damage;
x10_radius = in.readFloatBig();
x14_knockback = in.readFloatBig();
}
float GetRadiusDamage() const { return xc_radiusDamage; }
float GetRadiusDamage(const CDamageVulnerability& dVuln);
};
}