using Microsoft.Xna.Framework.Input; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tutorial004 { public class Input { public Keys Left { get; set; } public Keys Right { get; set; } public Keys Up { get; set; } public Keys Down { get; set; } } }