mirror of
https://github.com/zeldaret/botw
synced 2026-08-16 04:44:33 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -4,26 +4,4 @@ namespace uking::action {
|
||||
|
||||
CameraEventIdling::CameraEventIdling(const InitArg& arg) : CameraEvent(arg) {}
|
||||
|
||||
CameraEventIdling::~CameraEventIdling() = default;
|
||||
|
||||
bool CameraEventIdling::init_(sead::Heap* heap) {
|
||||
return CameraEvent::init_(heap);
|
||||
}
|
||||
|
||||
void CameraEventIdling::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
CameraEvent::enter_(params);
|
||||
}
|
||||
|
||||
void CameraEventIdling::leave_() {
|
||||
CameraEvent::leave_();
|
||||
}
|
||||
|
||||
void CameraEventIdling::loadParams_() {
|
||||
getStaticParam(&mBowFlag_s, "BowFlag");
|
||||
}
|
||||
|
||||
void CameraEventIdling::calc_() {
|
||||
CameraEvent::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
|
||||
Reference in New Issue
Block a user