diff options
Diffstat (limited to 'source/game/input/conditions/ICondition.cs')
| -rw-r--r-- | source/game/input/conditions/ICondition.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/game/input/conditions/ICondition.cs b/source/game/input/conditions/ICondition.cs new file mode 100644 index 0000000..32bbc74 --- /dev/null +++ b/source/game/input/conditions/ICondition.cs @@ -0,0 +1,5 @@ +namespace Celesteia.Game.Input.Conditions { + public interface ICondition<T> { + T Poll(); + } +}
\ No newline at end of file |
