mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-11-02 18:45:08 -05:00
12 lines
219 B
C#
12 lines
219 B
C#
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
|
|
using System;
|
|
using OpenTK.Input;
|
|
|
|
namespace ClassicalSharp.Mode {
|
|
|
|
public interface IGameMode : IGameComponent {
|
|
|
|
bool HandlesKeyDown(Key key);
|
|
}
|
|
}
|