mirror of
https://github.com/zeldaret/botw
synced 2026-08-19 05:31:57 -04:00
ksys: Implement KingEditor (stubbed)
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#include "KingSystem/System/KingEditor.h"
|
||||
|
||||
namespace ksys {
|
||||
|
||||
SEAD_SINGLETON_DISPOSER_IMPL(KingEditor)
|
||||
|
||||
void KingEditor::init(sead::Heap* heap) {
|
||||
// Stubbed in release.
|
||||
}
|
||||
|
||||
void KingEditor::calc() {
|
||||
// Stubbed in release.
|
||||
}
|
||||
|
||||
void KingEditor::registerComponent(KingEditorComponent* component) {
|
||||
// Stubbed in release.
|
||||
}
|
||||
|
||||
void KingEditor::log(const char* system, const char* message, void*, int) {
|
||||
// Stubbed in release.
|
||||
}
|
||||
|
||||
void KingEditorComponent::log(const char* message, void* x, int y) const {
|
||||
KingEditor::instance()->log(getName(), message, x, y);
|
||||
}
|
||||
|
||||
} // namespace ksys
|
||||
Reference in New Issue
Block a user