ios-unity/Libraries/libil2cpp/include/vm/ScopedThreadAttacher.h
2022-07-11 13:33:51 +08:00

21 lines
274 B
C++

#pragma once
#include "vm/Domain.h"
#include "vm/Thread.h"
namespace il2cpp
{
namespace vm
{
class ScopedThreadAttacher
{
public:
ScopedThreadAttacher();
~ScopedThreadAttacher();
private:
Il2CppThread* m_AttachedThread;
};
}
}