Match and link CBSGetup

Former-commit-id: 41bf7e38fb
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-28 12:17:39 +03:00
parent aa2ab55197
commit 1429792970
8 changed files with 101 additions and 8 deletions

View File

@@ -55,6 +55,19 @@ public:
bool UseSpecialAnimId() const { return x1c_25_overrideAnim; }
};
//
class CBCGetupCmd : public CBodyStateCmd {
pas::EGetupType x8_type;
public:
explicit CBCGetupCmd() : CBodyStateCmd(kBSC_Getup), x8_type(pas::kGetup_Invalid) {}
explicit CBCGetupCmd(pas::EGetupType type) : CBodyStateCmd(kBSC_Getup), x8_type(type) {}
pas::EGetupType GetGetupType() const { return x8_type; }
};
//
class CBCSlideCmd : public CBodyStateCmd {
public:
explicit CBCSlideCmd()