| 12345678910111213141516171819202122 |
- using Microsoft.Xna.Framework.Input;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Tutorial020.Models
- {
- public class Input
- {
- public Keys Up { get; set; }
- public Keys Down { get; set; }
- public Keys Left { get; set; }
- public Keys Right { get; set; }
- public Keys Shoot { get; set; }
- }
- }
|