mirror of
https://github.com/zeldaret/botw
synced 2026-08-04 17:09:49 -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
|