mirror of https://github.com/zeldaret/botw.git
21 lines
463 B
C++
21 lines
463 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionPlayerAction.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class PlayerBindSheikPad : public PlayerAction {
|
|
SEAD_RTTI_OVERRIDE(PlayerBindSheikPad, PlayerAction)
|
|
public:
|
|
explicit PlayerBindSheikPad(const InitArg& arg);
|
|
~PlayerBindSheikPad() override;
|
|
|
|
bool init_(sead::Heap* heap) override;
|
|
void loadParams_() override;
|
|
|
|
protected:
|
|
};
|
|
|
|
} // namespace uking::action
|