mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-17 05:11:21 +00:00
12 lines
239 B
C++
12 lines
239 B
C++
#include "Runtime/World/CHealthInfo.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
CHealthInfo::CHealthInfo(CInputStream& in) {
|
|
in.readUint32Big();
|
|
x0_health = in.readFloatBig();
|
|
x4_knockbackResistance = in.readFloatBig();
|
|
}
|
|
|
|
} // namespace metaforce
|