changhong_newclient/web_xcode/Libraries/libil2cpp/include/vm/ScopedThreadAttacher.h

20 lines
249 B
C
Raw Normal View History

2025-05-24 14:29:14 +08:00
#pragma once
struct Il2CppThread;
namespace il2cpp
{
namespace vm
{
class ScopedThreadAttacher
{
public:
ScopedThreadAttacher();
~ScopedThreadAttacher();
private:
Il2CppThread* m_AttachedThread;
};
}
}