mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
24 lines
461 B
C++
24 lines
461 B
C++
#include "Game/AI/Action/actionGetItemIntoBag.h"
|
|
|
|
namespace uking::action {
|
|
|
|
GetItemIntoBag::GetItemIntoBag(const InitArg& arg) : GetItem(arg) {}
|
|
|
|
void GetItemIntoBag::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
GetItem::enter_(params);
|
|
}
|
|
|
|
void GetItemIntoBag::leave_() {
|
|
GetItem::leave_();
|
|
}
|
|
|
|
void GetItemIntoBag::loadParams_() {
|
|
GetItem::loadParams_();
|
|
}
|
|
|
|
void GetItemIntoBag::calc_() {
|
|
GetItem::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|