AssetSystem_Base.cs 240 B

123456789101112131415161718
  1. using UnityEngine;
  2. using System.Collections;
  3. public class AssetSystem_Base<T> : MonoBehaviour
  4. {
  5. public static T Ins
  6. {
  7. get
  8. {
  9. return m_Instance;
  10. }
  11. }
  12. protected static T m_Instance;
  13. }