21 lines
441 B
C#
21 lines
441 B
C#
|
namespace Dreamteck
|
||
|
{
|
||
|
using System.Linq;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Singleton<T> : PrivateSingleton<T> where T : Component
|
||
|
{
|
||
|
public static T instance
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
if (_instance == null)
|
||
|
{
|
||
|
_instance = Object.FindObjectsOfType<T>().FirstOrDefault();
|
||
|
}
|
||
|
|
||
|
return _instance;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|