mirror of
https://github.com/zeldaret/botw
synced 2026-07-09 22:11:38 -04:00
13 lines
270 B
C++
13 lines
270 B
C++
#pragma once
|
|
|
|
#include <prim/seadSafeString.h>
|
|
|
|
namespace ksys::util {
|
|
|
|
inline void PrintDebug([[maybe_unused]] const sead::SafeString& message) {}
|
|
|
|
template <typename... Args>
|
|
inline void PrintDebugFmt(const char* format, const Args&...) {}
|
|
|
|
} // namespace ksys::util
|