mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
16 lines
339 B
C++
16 lines
339 B
C++
#pragma once
|
|
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class CameraEventPlayerHideOff : public ksys::act::ai::Action {
|
|
SEAD_RTTI_OVERRIDE(CameraEventPlayerHideOff, ksys::act::ai::Action)
|
|
public:
|
|
explicit CameraEventPlayerHideOff(const InitArg& arg);
|
|
|
|
protected:
|
|
};
|
|
|
|
} // namespace uking::action
|