Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Debug.h 277B

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. }