mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
15 lines
417 B
C#
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; }
|
|
}
|
|
} |