mirror of https://github.com/zeldaret/botw.git
16 lines
335 B
C++
16 lines
335 B
C++
#include "Game/AI/Action/actionGetWeaponEquip.h"
|
|
|
|
namespace uking::action {
|
|
|
|
GetWeaponEquip::GetWeaponEquip(const InitArg& arg) : GetItem(arg) {}
|
|
|
|
void GetWeaponEquip::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
GetItem::enter_(params);
|
|
}
|
|
|
|
void GetWeaponEquip::calc_() {
|
|
GetItem::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|