Files
botw/src/KingSystem/Utils/Debug.h
T
2021-03-13 15:16:31 +01:00

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