InputDummy.cpp 496 B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright (C) 2009-2021, 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. Error Input::initInternal(NativeWindow* nativeWindow)
  9. {
  10. return Error::NONE;
  11. }
  12. void Input::destroy()
  13. {
  14. }
  15. Error Input::handleEvents()
  16. {
  17. return Error::NONE;
  18. }
  19. void Input::moveCursor(const Vec2& pos)
  20. {
  21. }
  22. void Input::hideCursor(Bool hide)
  23. {
  24. }
  25. } // end namespace anki