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

MREA fixes, some script constructors

This commit is contained in:
Jack Andersen
2017-02-27 21:31:14 -10:00
parent e923d83617
commit 5277d445d3
17 changed files with 301 additions and 133 deletions

View File

@@ -4,7 +4,10 @@ namespace urde
{
CHealthInfo::CHealthInfo(CInputStream& in)
: x0_health(in.readFloatBig()),
x4_knockbackResistance(in.readFloatBig()) {}
{
in.readUint32Big();
x0_health = in.readFloatBig();
x4_knockbackResistance = in.readFloatBig();
}
}