제네릭 활용스탠다드반 강의를 도강하면서 유용한 정보들을 쏙쏙 뽑아왔다. (대충 꺼억콩)제네릭 싱글톤다양한 Manager 클래스를 만들 때 싱글톤으로 만드는 코드가 반복되는데, 제네릭을 사용해서 싱글톤 객체를 효율적으로 만들 수 있다. public class Singleton : MonoBehaviour where T : MonoBehaviourSingleton : MonoBehaviour Singleton 클래스가 MonoBehaviour를 상속받는다. (그래야 FindObjectOfType 가능)where T : MonoBehaviour T에 들어올 클래스가 MonoBehaviour를 상속받고 있어야 한다.using System.Collections;using System.Collections.Ge..