9 lines
198 B
C#
9 lines
198 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Services.Interfaces {
|
|
public interface IInputService {
|
|
event Action<Vector2> OnPointerDown;
|
|
event Action<Vector2> OnPointerUp;
|
|
}
|
|
} |