mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
27 lines
476 B
C#
27 lines
476 B
C#
namespace TEngineCore
|
|
{
|
|
public class ThreadMgr : UnitySingleton<ThreadMgr>
|
|
{
|
|
protected override void OnLoad()
|
|
{
|
|
base.OnLoad();
|
|
StartThread();
|
|
}
|
|
|
|
protected override void OnDestroy()
|
|
{
|
|
base.OnDestroy();
|
|
ShutDownThread();
|
|
}
|
|
|
|
private void StartThread()
|
|
{
|
|
|
|
}
|
|
|
|
private void ShutDownThread()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |