2018-10-30 23:29:54 +00:00
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
2018-11-21 00:56:41 +00:00
|
|
|
|
using RhythmBullet.Utilities.Persistence;
|
2018-09-16 06:37:48 +00:00
|
|
|
|
|
2018-11-21 00:56:41 +00:00
|
|
|
|
namespace RhythmBullet.Preferences
|
2018-09-16 06:37:48 +00:00
|
|
|
|
{
|
2018-10-30 23:29:54 +00:00
|
|
|
|
public class Controls : Utilities.Persistence.Preferences
|
2018-09-16 06:37:48 +00:00
|
|
|
|
{
|
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;
|
2018-09-16 06:37:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|