Input.cs 305 B

123456789101112131415
  1. using Microsoft.Xna.Framework.Input;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Tutorial007.Models
  8. {
  9. public class Input
  10. {
  11. public Keys Left { get; set; }
  12. public Keys Right { get; set; }
  13. }
  14. }