Guest User

Untitled

a guest
Oct 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Hanafuda.Core.Input
  7. {
  8. public interface IInputFeeder
  9. {
  10. void Update(IInputController controller);
  11. bool Modal { get; }
  12. }
  13. }
Add Comment
Please, Sign In to add comment