blob: 87ebb77e65ad737f132c12e7c755d5688c574f69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using Microsoft.Xna.Framework.Input;
namespace Celesteia.Game.Input.Definitions.Keyboard {
public class BinaryKeyboardDefinition : IBinaryInputDefinition {
public Keys Keys;
public InputPollType PollType;
public bool Test() => KeyboardHelper.Poll(Keys, PollType);
}
}
|