InputDummy.cpp 496 B

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