mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
28 lines
512 B
C++
28 lines
512 B
C++
#include "Game/AI/Action/actionAngry.h"
|
|
|
|
namespace uking::action {
|
|
|
|
Angry::Angry(const InitArg& arg) : ActionWithAS(arg) {}
|
|
|
|
bool Angry::init_(sead::Heap* heap) {
|
|
return ActionWithAS::init_(heap);
|
|
}
|
|
|
|
void Angry::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
ActionWithAS::enter_(params);
|
|
}
|
|
|
|
void Angry::leave_() {
|
|
ActionWithAS::leave_();
|
|
}
|
|
|
|
void Angry::loadParams_() {
|
|
ActionWithPosAngReduce::loadParams_();
|
|
}
|
|
|
|
void Angry::calc_() {
|
|
ActionWithAS::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|