mirror of https://github.com/zeldaret/botw.git
14 lines
321 B
C++
14 lines
321 B
C++
#include "Game/AI/Action/actionSimpleGrabWithASBase.h"
|
|
|
|
namespace uking::action {
|
|
|
|
SimpleGrabWithASBase::SimpleGrabWithASBase(const InitArg& arg) : Grab(arg) {}
|
|
|
|
SimpleGrabWithASBase::~SimpleGrabWithASBase() = default;
|
|
|
|
void SimpleGrabWithASBase::loadParams_() {
|
|
Grab::loadParams_();
|
|
}
|
|
|
|
} // namespace uking::action
|