Files
2026-03-19 18:12:07 +01:00

8 lines
132 B
C#

namespace Nox.Input {
public interface IInput {
void Initialize();
void Tick();
void Dispose();
}
}