InputDummy.cpp 548 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright (C) 2009-2020, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include <anki/input/Input.h>
  6. namespace anki
  7. {
  8. void Input::handleEvents()
  9. {
  10. // You are dummy... do nothing
  11. }
  12. void Input::init(NativeWindow* nativeWindow)
  13. {
  14. // You are dummy... do nothing
  15. }
  16. void Input::moveCursor(const Vec2& posNdc)
  17. {
  18. // You are dummy... do nothing
  19. }
  20. void Input::hideCursor(Bool hide)
  21. {
  22. // You are dummy... do nothing
  23. }
  24. } // end namespace anki