2018-10-30 18:29:54 -05:00
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
2018-12-04 23:37:05 -06:00
|
|
|
|
using RecrownedAthenaeum.Persistence;
|
2018-09-16 01:37:48 -05:00
|
|
|
|
|
2018-12-03 23:05:54 -06:00
|
|
|
|
namespace RecrownedAthenaeum.Preferences
|
2018-09-16 01:37:48 -05:00
|
|
|
|
{
|
2018-12-05 00:02:12 -06:00
|
|
|
|
public class Controls
|
2018-09-16 01:37:48 -05:00
|
|
|
|
{
|
2018-10-30 18:29:54 -05: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 01:37:48 -05:00
|
|
|
|
}
|
|
|
|
|
}
|