mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
16 lines
429 B
C++
16 lines
429 B
C++
#include "Game/AI/Action/actionEventRecoverPlayerLife.h"
|
|
|
|
namespace uking::action {
|
|
|
|
EventRecoverPlayerLife::EventRecoverPlayerLife(const InitArg& arg) : ksys::act::ai::Action(arg) {}
|
|
|
|
EventRecoverPlayerLife::~EventRecoverPlayerLife() = default;
|
|
|
|
bool EventRecoverPlayerLife::init_(sead::Heap* heap) {
|
|
return ksys::act::ai::Action::init_(heap);
|
|
}
|
|
|
|
void EventRecoverPlayerLife::loadParams_() {}
|
|
|
|
} // namespace uking::action
|