forked from Shardstone/trail-into-darkness
8 lines
132 B
C#
8 lines
132 B
C#
namespace Nox.Input {
|
|
public interface IInput {
|
|
void Initialize();
|
|
void Tick();
|
|
void Dispose();
|
|
}
|
|
}
|