37 lines
840 B
C#
37 lines
840 B
C#
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;
|
|
|
|
/// <summary>
|
|
/// (Sender, spawnerRef, X, Y)
|
|
/// </summary>
|
|
public event Action<SlotManager, GridManager, int, int> OnSlotClicked;
|
|
|
|
public event Action<SlotManager, GridManager, int, int> OnSlotHovered;
|
|
public event Action<SlotManager, GridManager, int, int> OnSlotUnHovered;
|
|
|
|
public void OnClick()
|
|
{
|
|
OnSlotClicked?.Invoke(this, spawnerRef, x, y);
|
|
}
|
|
|
|
public void OnHovered()
|
|
{
|
|
OnSlotHovered?.Invoke(this, spawnerRef, x, y);
|
|
}
|
|
|
|
public void OnUnHovered()
|
|
{
|
|
OnSlotUnHovered?.Invoke(this, spawnerRef, x, y);
|
|
}
|
|
}
|