Unity_继承mono单例类

小鸟游星野
小鸟游星野
发布于 2025-03-08 / 36 阅读
0
0

Unity_继承mono单例类

using System.Collections;
using System.Collections.Generic;
using UnityEngine;


public class BaseManager<T> where T:class,new()
{
    private static T instance;


    public static T Instance
    {
        get
        {
            if (instance == null)
                instance = new T();
            return instance;
        }
    }


}


评论