mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 06:48:15 -04:00
14 lines
349 B
C++
14 lines
349 B
C++
#include "Game/AI/Action/actionEquipedWithScale.h"
|
|
|
|
namespace uking::action {
|
|
|
|
EquipedWithScale::EquipedWithScale(const InitArg& arg) : EquipedAction(arg) {}
|
|
|
|
EquipedWithScale::~EquipedWithScale() = default;
|
|
|
|
void EquipedWithScale::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
EquipedAction::enter_(params);
|
|
}
|
|
|
|
} // namespace uking::action
|