17 lines
365 B
C#
17 lines
365 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;
|
|
|
|
/// <summary>
|
|
/// (Sender, spawnerRef, X, Y)
|
|
/// </summary>
|
|
public static event Action<SlotManager, GridManager, int, int> OnSlotClicked;
|
|
}
|