mirror of
https://github.com/zeldaret/botw
synced 2026-06-17 15:06:37 -04:00
Implemented DebugFinder
This commit is contained in:
@@ -9,6 +9,8 @@ target_sources(uking PRIVATE
|
||||
CameraEditor.h
|
||||
CameraMgr.cpp
|
||||
CameraMgr.h
|
||||
DebugFinder.cpp
|
||||
DebugFinder.h
|
||||
DebugMessage.h
|
||||
HavokWorkerMgr.cpp
|
||||
HavokWorkerMgr.h
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
#include "KingSystem/System/DebugFinder.h"
|
||||
|
||||
namespace ksys {
|
||||
|
||||
SEAD_SINGLETON_DISPOSER_IMPL(DebugFinder)
|
||||
|
||||
DebugFinder::DebugFinder() = default;
|
||||
|
||||
void DebugFinder::init(sead::Heap* heap) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include <heap/seadDisposer.h>
|
||||
#include <prim/seadSafeString.h>
|
||||
|
||||
namespace ksys {
|
||||
|
||||
class DebugFinder{
|
||||
SEAD_SINGLETON_DISPOSER(DebugFinder)
|
||||
DebugFinder();
|
||||
virtual ~DebugFinder();
|
||||
|
||||
public:
|
||||
void init(sead::Heap* heap);
|
||||
|
||||
private:
|
||||
sead::FixedSafeString<0x40> unused_1;
|
||||
sead::FixedSafeString<0x100> unused_2;
|
||||
u32 unused_3 = 0;
|
||||
};
|
||||
|
||||
} // namespace ksys::evt
|
||||
Reference in New Issue
Block a user