AlicizaX/Client/Assets/Scripts/New/Example/Scene/IInputService.cs
2026-03-25 18:33:59 +08:00

14 lines
246 B
C#

using UnityEngine;
namespace Aliciza.Services.Example
{
public interface IInputService : IService
{
Vector2 Move { get; }
bool ConfirmPressedThisFrame { get; }
bool ToggleBattlePressedThisFrame { get; }
}
}