using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class SlotManager : MonoBehaviour { public GridManager spawnerRef; public int x; public int y; public Transform TowerSpawnPoint; /// /// (Sender, spawnerRef, X, Y) /// public event Action OnSlotClicked; public void OnClick() { OnSlotClicked?.Invoke(this, spawnerRef, x, y); } }