feat: added IGameInputs

This commit is contained in:
2025-08-09 18:30:07 +03:00
parent 9907aebe36
commit 182f96a16e
6 changed files with 153 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
using Engine.Systems.Input;
namespace MyUniverse.Shared.Behaviours.Abstract;
public interface IGameInputs : IButtonInputs<IGameInputs.Button>
{
public enum Button
{
Interact
}
}

View File

@@ -0,0 +1,5 @@
using Engine.Core;
namespace MyUniverse.Shared.Behaviours;
public interface IRotator : IBehaviour;