rhythmbullet/RhythmBullet/Preferences/Controls.cs

14 lines
317 B
C#
Raw Normal View History

2018-10-30 23:29:54 +00:00
using Microsoft.Xna.Framework.Input;
2019-01-23 01:31:15 +00:00
namespace RhythmBullet.Preferences
{
public class Controls
{
2018-10-30 23:29:54 +00:00
public Keys Forward = Keys.Up;
public Keys Backward = Keys.Down;
public Keys Left = Keys.Left;
public Keys Right = Keys.Right;
public Keys Shoot = Keys.Space;
}
}