mirror of
https://github.com/zeldaret/botw
synced 2026-07-09 14:05:33 -04:00
ksys: Add CameraEditor
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
target_sources(uking PRIVATE
|
||||
Account.cpp
|
||||
Account.h
|
||||
CameraEditor.cpp
|
||||
CameraEditor.h
|
||||
DebugMessage.h
|
||||
HavokWorkerMgr.cpp
|
||||
HavokWorkerMgr.h
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#include "KingSystem/System/CameraEditor.h"
|
||||
|
||||
namespace ksys {
|
||||
|
||||
SEAD_SINGLETON_DISPOSER_IMPL(CameraEditor)
|
||||
|
||||
} // namespace ksys
|
||||
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <heap/seadDisposer.h>
|
||||
|
||||
namespace ksys {
|
||||
|
||||
// Completely stubbed in release builds
|
||||
class CameraEditor {
|
||||
SEAD_SINGLETON_DISPOSER(CameraEditor)
|
||||
CameraEditor() = default;
|
||||
};
|
||||
|
||||
} // namespace ksys
|
||||
Reference in New Issue
Block a user