8 lines
115 B
C#
8 lines
115 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
public interface IBinding
|
|
{
|
|
public bool IsPressed { get; }
|
|
}
|