15 lines
387 B
C#
15 lines
387 B
C#
using Microsoft.Xna.Framework.Input;
|
|
using RecrownedAthenaeum.Persistence;
|
|
|
|
namespace RecrownedAthenaeum.Preferences
|
|
{
|
|
public class Controls : Persistence.Preferences
|
|
{
|
|
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;
|
|
}
|
|
}
|