ksys: Add CameraEditor

This commit is contained in:
Léo Lam
2021-05-09 12:18:15 +02:00
parent 2fef4f821e
commit 7c30d3f6e5
4 changed files with 25 additions and 3 deletions
+2
View File
@@ -1,6 +1,8 @@
target_sources(uking PRIVATE
Account.cpp
Account.h
CameraEditor.cpp
CameraEditor.h
DebugMessage.h
HavokWorkerMgr.cpp
HavokWorkerMgr.h
+7
View File
@@ -0,0 +1,7 @@
#include "KingSystem/System/CameraEditor.h"
namespace ksys {
SEAD_SINGLETON_DISPOSER_IMPL(CameraEditor)
} // namespace ksys
+13
View File
@@ -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