mirror of
https://github.com/zeldaret/botw
synced 2026-06-05 11:17:48 -04:00
14 lines
383 B
C++
14 lines
383 B
C++
#include "Game/AI/Action/actionBattleCloseGuardRun.h"
|
|
|
|
namespace uking::action {
|
|
|
|
BattleCloseGuardRun::BattleCloseGuardRun(const InitArg& arg) : BattleCloseMoveAction(arg) {}
|
|
|
|
BattleCloseGuardRun::~BattleCloseGuardRun() = default;
|
|
|
|
void BattleCloseGuardRun::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
BattleCloseMoveAction::enter_(params);
|
|
}
|
|
|
|
} // namespace uking::action
|