Files
project-entity/Assets/_Project/Develop/Runtime/Utilities/InputManagement/Inputs/IUIInput.cs
Bragin Stepan 1174be2d43 update
2026-02-19 23:19:33 +05:00

15 lines
417 B
C#

using System;
using UnityEngine;
namespace _Project.Develop.Runtime.Utils.InputManagement
{
public interface IUIInput : IInput
{
InputState<Vector2> Point { get; }
InputState<Vector2> Navigate { get; }
InputState<float> Click { get; }
InputState<float> RightClick { get; }
InputState<float> MiddleClick { get; }
InputState<Vector2> ScrollWheel { get; }
}
}