12 lines
200 B
C#
12 lines
200 B
C#
using Engine.Systems.Input;
|
|
|
|
namespace MyUniverse.Shared.Behaviours.Abstract;
|
|
|
|
public interface IGameInputs : IButtonInputs<IGameInputs.Button>
|
|
{
|
|
public enum Button
|
|
{
|
|
Interact
|
|
}
|
|
}
|