1 2 3 4 5 6 7 8 9 10 11 12
#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