mirror of
https://github.com/zeldaret/botw
synced 2026-06-25 09:22:29 -04:00
Implement MessageCapture
This commit is contained in:
@@ -18,6 +18,8 @@ target_sources(uking PRIVATE
|
||||
KingEditor.h
|
||||
MemoryProfiler.cpp
|
||||
MemoryProfiler.h
|
||||
MessageCapture.cpp
|
||||
MessageCapture.h
|
||||
OcclusionQueryCylinder.cpp
|
||||
OcclusionQueryCylinder.h
|
||||
OverlayArena.cpp
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#include "KingSystem/System/MessageCapture.h"
|
||||
|
||||
namespace ksys {
|
||||
|
||||
SEAD_SINGLETON_DISPOSER_IMPL(MessageCapture)
|
||||
|
||||
} // namespace ksys
|
||||
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <heap/seadDisposer.h>
|
||||
#include "KingSystem/Utils/Types.h"
|
||||
|
||||
namespace ksys {
|
||||
|
||||
class MessageCapture {
|
||||
SEAD_SINGLETON_DISPOSER(MessageCapture)
|
||||
MessageCapture() = default;
|
||||
virtual ~MessageCapture() = default;
|
||||
};
|
||||
KSYS_CHECK_SIZE_NX150(MessageCapture, 0x28);
|
||||
|
||||
} // namespace ksys
|
||||
Reference in New Issue
Block a user