mirror of https://github.com/zeldaret/botw.git
18 lines
358 B
C++
18 lines
358 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionCameraAction.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class CameraHorse : public CameraAction {
|
|
SEAD_RTTI_OVERRIDE(CameraHorse, CameraAction)
|
|
public:
|
|
explicit CameraHorse(const InitArg& arg);
|
|
~CameraHorse() override;
|
|
|
|
protected:
|
|
};
|
|
|
|
} // namespace uking::action
|