mirror of https://github.com/zeldaret/botw.git
21 lines
484 B
C++
21 lines
484 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionPlayerAction.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class PlayerCutHorseJumpLand : public PlayerAction {
|
|
SEAD_RTTI_OVERRIDE(PlayerCutHorseJumpLand, PlayerAction)
|
|
public:
|
|
explicit PlayerCutHorseJumpLand(const InitArg& arg);
|
|
|
|
void enter_(ksys::act::ai::InlineParamPack* params) override;
|
|
void leave_() override;
|
|
|
|
protected:
|
|
void calc_() override;
|
|
};
|
|
|
|
} // namespace uking::action
|