9 lines
151 B
C#
9 lines
151 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
public interface IBinding
|
|
{
|
|
public bool IsPressed { get; }
|
|
public bool IsReleased { get; }
|
|
}
|