IInput.cs 266 B

123456789101112131415
  1. using OpenTK;
  2. using OpenTK.Input;
  3. using System;
  4. using System.Collections.Generic;
  5. namespace fun.Communication
  6. {
  7. public interface IInput
  8. {
  9. IEnumerable<Key> Keys { set; }
  10. Vector2 MouseDelta { set; }
  11. Vector3 Content { set; }
  12. }
  13. }