2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-08 08:19:07 +00:00
metaforce/Runtime/World/CHealthInfo.cpp
Phillip Stephens dad7249927
RE COutput/InputStream and friends and migrate over
This branch is probably still horribly broken, but it's a good first step to migrating away from having hecl embedded in the runtime
2022-02-21 08:01:05 -08:00

13 lines
264 B
C++

#include "Runtime/World/CHealthInfo.hpp"
#include "Runtime/CInputStream.hpp"
namespace metaforce {
CHealthInfo::CHealthInfo(CInputStream& in) {
in.ReadLong();
x0_health = in.ReadFloat();
x4_knockbackResistance = in.ReadFloat();
}
} // namespace metaforce