标签:frame == mono style tar before gen col led
using System.Collections; using System.Collections.Generic; using UnityEngine; public class PoolMar : MonoBehaviour { // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } } public class Student <T> where T:new() { public static T instance; public static T MyStudent() { if (instance == null) { instance = new T(); } return instance; } } public class Student1 :Student<Student1> { }
标签:frame == mono style tar before gen col led
原文地址:https://www.cnblogs.com/yueqingli/p/13282985.html