SDLJoystickHandler.cs 342 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using Android.Views;
  5. namespace Urho.Android
  6. {
  7. public class SDLJoystickHandler
  8. {
  9. public bool handleMotionEvent(MotionEvent e) {
  10. return false;
  11. }
  12. public void pollInputDevices()
  13. {
  14. }
  15. }
  16. public class SDLJoystickHandler_API12 : SDLJoystickHandler
  17. {
  18. }
  19. }