mirror of
https://github.com/zeldaret/botw
synced 2026-08-19 13:33:23 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#include "Game/AI/Action/actionHorseRideMoveCommand.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
HorseRideMoveCommand::HorseRideMoveCommand(const InitArg& arg) : HorseRideCommand(arg) {}
|
||||
|
||||
HorseRideMoveCommand::~HorseRideMoveCommand() = default;
|
||||
|
||||
bool HorseRideMoveCommand::init_(sead::Heap* heap) {
|
||||
return HorseRideCommand::init_(heap);
|
||||
}
|
||||
|
||||
void HorseRideMoveCommand::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
HorseRideCommand::enter_(params);
|
||||
}
|
||||
|
||||
void HorseRideMoveCommand::leave_() {
|
||||
HorseRideCommand::leave_();
|
||||
}
|
||||
|
||||
void HorseRideMoveCommand::loadParams_() {
|
||||
HorseRideCommand::loadParams_();
|
||||
getStaticParam(&mGear_s, "Gear");
|
||||
}
|
||||
|
||||
void HorseRideMoveCommand::calc_() {
|
||||
HorseRideCommand::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user