2022-08-11 08:49:23 +03:00

9 lines
151 B
C#

using System.Collections;
using UnityEngine;
public interface IBinding
{
public bool IsPressed { get; }
public bool IsReleased { get; }
}