Start matching CScriptPlatform; more CScriptMazeNode

Former-commit-id: 135d63412c
This commit is contained in:
2022-09-18 01:55:13 -04:00
parent ad6fd10f21
commit 41a2efa884
30 changed files with 984 additions and 90 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _CHEALTHINFO_HPP
#define _CHEALTHINFO_HPP
#include "types.h"
class CHealthInfo {
public:
CHealthInfo(f32 hp, f32 resist);
// TODO
private:
f32 x0_health;
f32 x4_knockbackResistance;
};
CHECK_SIZEOF(CHealthInfo, 0x8)
#endif