mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 13:46:25 -04:00
23 lines
511 B
C++
23 lines
511 B
C++
#pragma once
|
|
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class SunMove : public ksys::act::ai::Action {
|
|
SEAD_RTTI_OVERRIDE(SunMove, ksys::act::ai::Action)
|
|
public:
|
|
explicit SunMove(const InitArg& arg);
|
|
~SunMove() override;
|
|
|
|
bool init_(sead::Heap* heap) override;
|
|
void enter_(ksys::act::ai::InlineParamPack* params) override;
|
|
void leave_() override;
|
|
void loadParams_() override;
|
|
|
|
protected:
|
|
void calc_() override;
|
|
};
|
|
|
|
} // namespace uking::action
|