ConsoleExtension.h 233 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "il2cpp-config.h"
  3. #if IL2CPP_SUPPORTS_CONSOLE_EXTENSION
  4. #include <string>
  5. #include <stdint.h>
  6. namespace il2cpp
  7. {
  8. namespace os
  9. {
  10. namespace ConsoleExtension
  11. {
  12. void Write(const char* buffer);
  13. }
  14. }
  15. }
  16. #endif