mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
13 lines
253 B
C#
13 lines
253 B
C#
namespace _Project.Develop.Runtime.Utilities.InputManagement
|
|
{
|
|
public interface IInput
|
|
{
|
|
bool IsEnabled { get; set; }
|
|
|
|
void Enable();
|
|
|
|
void Disable();
|
|
|
|
void Update(float deltaTime);
|
|
}
|
|
} |