8 lines
172 B
C#
8 lines
172 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Services.Interfaces {
|
|
public interface IInputService {
|
|
event Action<Vector2Int, Vector2Int> OnSwapRequested;
|
|
}
|
|
} |