blob: 7ceed38c93664af5993b3f442119aba3c3e6690c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
|