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