22 lines
379 B
C#
22 lines
379 B
C#
using AibisDream.Framework;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream.FixSystem
|
|
{
|
|
public class FixSystemCenter : MonoBehaviour
|
|
{
|
|
public static IOCContainer SystemDic = new();
|
|
|
|
private void Awake()
|
|
{
|
|
SystemDic ??= new IOCContainer();
|
|
}
|
|
|
|
private void OnDestroy()
|
|
{
|
|
SystemDic = null;
|
|
}
|
|
}
|
|
}
|
|
|