rhythmbullet/RhythmBullet/Preferences/Controls.cs
2021-12-23 21:33:01 -06:00

14 lines
317 B
C#
Executable File

using Microsoft.Xna.Framework.Input;
namespace RhythmBullet.Preferences
{
public class Controls
{
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;
}
}