UI 자동화부분이 어려워서 다시 돌려보면서 공부하고 있는 중에 하나 궁금한점이 있어 질문드립니다
private void Start()
{
Bind<Button>(typeof(Buttons));
Bind<Text>(typeof(Texts));
}
Start 함수에서 Bind(typeof(Buttons)); Bind(typeof(Texts)); 로 호출하지 않고
Bind<Button>, Bind<Text>로 호출한 이유는 Dictionary 형태의 변수를 만들어 관리하기 편하게 하기 위함으로 봐도 될까요?