botw/src/Game/AI/Action/actionPlayerGrabUpAnmStop.h

21 lines
475 B
C++

#pragma once
#include "Game/AI/Action/actionPlayerAction.h"
#include "KingSystem/ActorSystem/actAiAction.h"
namespace uking::action {
class PlayerGrabUpAnmStop : public PlayerAction {
SEAD_RTTI_OVERRIDE(PlayerGrabUpAnmStop, PlayerAction)
public:
explicit PlayerGrabUpAnmStop(const InitArg& arg);
void enter_(ksys::act::ai::InlineParamPack* params) override;
void leave_() override;
protected:
void calc_() override;
};
} // namespace uking::action