Debug.h 277 B

1234567891011121314151617
  1. #pragma once
  2. #include "il2cpp-config.h"
  3. #include "utils/StringView.h"
  4. namespace il2cpp
  5. {
  6. namespace os
  7. {
  8. class Debug
  9. {
  10. public:
  11. static bool IsDebuggerPresent();
  12. static void WriteString(const utils::StringView<Il2CppNativeChar>& message);
  13. };
  14. }
  15. }