mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-15 14:46:07 +00:00
Match(?) CABSFlinch, but hash fails after linking
Former-commit-id: 6a7cfb135f
This commit is contained in:
@@ -33,7 +33,21 @@ enum EBodyStateCmd {
|
||||
kBSC_StopReaction
|
||||
};
|
||||
|
||||
class CBodyStateCmd;
|
||||
class CBodyStateCmd {
|
||||
EBodyStateCmd x4_cmd;
|
||||
|
||||
public:
|
||||
virtual ~CBodyStateCmd() {};
|
||||
explicit CBodyStateCmd(EBodyStateCmd cmd) : x4_cmd(cmd) {}
|
||||
EBodyStateCmd GetCommandId() const { return x4_cmd; }
|
||||
};
|
||||
|
||||
class CBCAdditiveFlinchCmd : public CBodyStateCmd {
|
||||
float x8_weight;
|
||||
|
||||
public:
|
||||
float GetWeight() const { return x8_weight; }
|
||||
};
|
||||
|
||||
class CBodyStateCmdMgr {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user