mirror of
https://github.com/zeldaret/botw
synced 2026-08-02 16:26:48 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#include "Game/AI/Action/actionPlayerAtnMove.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
PlayerAtnMove::PlayerAtnMove(const InitArg& arg) : PlayerAction(arg) {}
|
||||
|
||||
PlayerAtnMove::~PlayerAtnMove() = default;
|
||||
|
||||
bool PlayerAtnMove::init_(sead::Heap* heap) {
|
||||
return PlayerAction::init_(heap);
|
||||
}
|
||||
|
||||
void PlayerAtnMove::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
PlayerAction::enter_(params);
|
||||
}
|
||||
|
||||
void PlayerAtnMove::leave_() {
|
||||
PlayerAction::leave_();
|
||||
}
|
||||
|
||||
void PlayerAtnMove::loadParams_() {}
|
||||
|
||||
void PlayerAtnMove::calc_() {
|
||||
PlayerAction::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user