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