AlicizaX/Client/Assets/Scripts/New/Example/Scene/IInputService.cs

14 lines
246 B
C#
Raw Normal View History

2026-03-25 18:33:59 +08:00
using UnityEngine;
namespace Aliciza.Services.Example
{
public interface IInputService : IService
{
Vector2 Move { get; }
bool ConfirmPressedThisFrame { get; }
bool ToggleBattlePressedThisFrame { get; }
}
}