using UnityEngine; using System.Collections; public class AssetSystem_Base<T> : MonoBehaviour { public static T Ins { get { return m_Instance; } } protected static T m_Instance; }