Files
botw/src/Game/AI/Action/actionWindControlLength.h
T
2020-12-28 01:26:51 +01:00

27 lines
650 B
C++

#pragma once
#include "Game/AI/Action/actionWindControl.h"
#include "KingSystem/ActorSystem/actAiAction.h"
namespace uking::action {
class WindControlLength : public WindControl {
SEAD_RTTI_OVERRIDE(WindControlLength, WindControl)
public:
explicit WindControlLength(const InitArg& arg);
~WindControlLength() 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;
// map_unit_param at offset 0x1a8
const float* mWindLength_m{};
};
} // namespace uking::action