ScopedThreadAttacher.h 249 B

12345678910111213141516171819
  1. #pragma once
  2. struct Il2CppThread;
  3. namespace il2cpp
  4. {
  5. namespace vm
  6. {
  7. class ScopedThreadAttacher
  8. {
  9. public:
  10. ScopedThreadAttacher();
  11. ~ScopedThreadAttacher();
  12. private:
  13. Il2CppThread* m_AttachedThread;
  14. };
  15. }
  16. }