Skip to content

Instantly share code, notes, and snippets.

View 0x61726b's full-sized avatar
🗿

ark 0x61726b

🗿
View GitHub Profile
using UnityEngine;
public class MonoSingleton<T> : MonoBehaviour where T : MonoBehaviour
{
private static T _sInstance;
public static T Instance
{
get
{