mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:51:22 +00:00
13 lines
272 B
C++
13 lines
272 B
C++
#include "Runtime/World/CHealthInfo.hpp"
|
|
|
|
#include "Runtime/Streams/CInputStream.hpp"
|
|
namespace metaforce {
|
|
|
|
CHealthInfo::CHealthInfo(CInputStream& in) {
|
|
in.ReadLong();
|
|
x0_health = in.ReadFloat();
|
|
x4_knockbackResistance = in.ReadFloat();
|
|
}
|
|
|
|
} // namespace metaforce
|