mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:51:22 +00:00
Like the prior changes normalizing the inclusions within headers, this tackles the cpp files of the RuntimeCommonB target, making these source files consistent with their headers.
12 lines
229 B
C++
12 lines
229 B
C++
#include "Runtime/World/CHealthInfo.hpp"
|
|
|
|
namespace urde {
|
|
|
|
CHealthInfo::CHealthInfo(CInputStream& in) {
|
|
in.readUint32Big();
|
|
x0_health = in.readFloatBig();
|
|
x4_knockbackResistance = in.readFloatBig();
|
|
}
|
|
|
|
} // namespace urde
|