mirror of
https://github.com/zeldaret/botw
synced 2026-07-23 21:47:37 -04:00
27 lines
656 B
C++
27 lines
656 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionBackWalkBase.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class SlippedBackWalkBase : public BackWalkBase {
|
|
SEAD_RTTI_OVERRIDE(SlippedBackWalkBase, BackWalkBase)
|
|
public:
|
|
explicit SlippedBackWalkBase(const InitArg& arg);
|
|
~SlippedBackWalkBase() 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;
|
|
|
|
// static_param at offset 0xb0
|
|
const float* mAccRatio_s{};
|
|
};
|
|
|
|
} // namespace uking::action
|