14 lines
246 B
C#
14 lines
246 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Aliciza.Services.Example
|
||
|
|
{
|
||
|
|
public interface IInputService : IService
|
||
|
|
{
|
||
|
|
Vector2 Move { get; }
|
||
|
|
|
||
|
|
bool ConfirmPressedThisFrame { get; }
|
||
|
|
|
||
|
|
bool ToggleBattlePressedThisFrame { get; }
|
||
|
|
}
|
||
|
|
}
|