Delegate함수에 대한 참조함수를 대신 호출함"타입"이다.(참조형 타입) // 즉 반환 타입과 매개변수로 넣을 수 있다.타입이므로 변수도 선언 가능하다그 자체로 콜백 기능을 해 준다. ( 함수를 먼저 참조하고 나중에 호출한다.)객체 -> 인스턴스 -> 함수 순으로 발생함.using System;using System.Collections;using System.Collections.Generic;using UnityEngine;public class DelegatePractice : MonoBehaviour{ public delegate int MyDelegate(int a, int b); void Start() { MyDelegate myDelegate; my..