mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
22 lines
445 B
C++
22 lines
445 B
C++
#include "Game/AI/Action/actionPlayerAtnMove.h"
|
|
|
|
namespace uking::action {
|
|
|
|
PlayerAtnMove::PlayerAtnMove(const InitArg& arg) : PlayerAction(arg) {}
|
|
|
|
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
|