mirror of
https://github.com/zeldaret/botw
synced 2026-05-31 01:15:31 -04:00
ksys: Add KingEditor (stub)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
target_sources(uking PRIVATE
|
||||
Account.cpp
|
||||
Account.h
|
||||
KingEditor.h
|
||||
OverlayArena.cpp
|
||||
OverlayArena.h
|
||||
OverlayArenaSystem.cpp
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include <heap/seadDisposer.h>
|
||||
|
||||
namespace ksys {
|
||||
|
||||
class KingEditorComponent {
|
||||
public:
|
||||
virtual const char* getName() const = 0;
|
||||
virtual void syncData() = 0;
|
||||
};
|
||||
|
||||
// FIXME
|
||||
class KingEditor {
|
||||
SEAD_SINGLETON_DISPOSER(KingEditor)
|
||||
|
||||
public:
|
||||
void registerComponent(KingEditorComponent* component);
|
||||
};
|
||||
|
||||
} // namespace ksys
|
||||
Reference in New Issue
Block a user