mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
15 lines
371 B
C++
15 lines
371 B
C++
#include "Game/AI/Action/actionSimpleGrabWithAS.h"
|
|
|
|
namespace uking::action {
|
|
|
|
SimpleGrabWithAS::SimpleGrabWithAS(const InitArg& arg) : SimpleGrabWithASBase(arg) {}
|
|
|
|
SimpleGrabWithAS::~SimpleGrabWithAS() = default;
|
|
|
|
void SimpleGrabWithAS::loadParams_() {
|
|
SimpleGrabWithASBase::loadParams_();
|
|
getStaticParam(&mASName_s, "ASName");
|
|
}
|
|
|
|
} // namespace uking::action
|