VladimirPirozhenko f2797a5355 Updated input system, added touch inputs
Now InputTranslator has its own interface to provide polymorphism in GameSession class
Touch input read only if target platform is android
2022-08-16 04:01:08 +03:00

10 lines
182 B
C#

using System.Collections;
using UnityEngine;
public interface IBinding
{
public bool IsPressed();
public bool IsReleased();
public bool IsRestricted { get; set; }
}