Layout.cpp 235 B

123456789101112131415
  1. #include "Base.h"
  2. #include "Layout.h"
  3. #include "Control.h"
  4. #include "Container.h"
  5. #include "Game.h"
  6. namespace gameplay
  7. {
  8. bool Layout::touchEvent(Touch::TouchEvent evt, int x, int y, unsigned int contactIndex)
  9. {
  10. return false;
  11. }
  12. }