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