mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#include "Game/AI/Action/actionSimpleGrabWithASBase.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
SimpleGrabWithASBase::SimpleGrabWithASBase(const InitArg& arg) : Grab(arg) {}
|
||||
|
||||
SimpleGrabWithASBase::~SimpleGrabWithASBase() = default;
|
||||
|
||||
bool SimpleGrabWithASBase::init_(sead::Heap* heap) {
|
||||
return Grab::init_(heap);
|
||||
}
|
||||
|
||||
void SimpleGrabWithASBase::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
Grab::enter_(params);
|
||||
}
|
||||
|
||||
void SimpleGrabWithASBase::leave_() {
|
||||
Grab::leave_();
|
||||
}
|
||||
|
||||
void SimpleGrabWithASBase::loadParams_() {
|
||||
Grab::loadParams_();
|
||||
}
|
||||
|
||||
void SimpleGrabWithASBase::calc_() {
|
||||
Grab::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user