Update to latest version of "native"

This commit is contained in:
Henrik Rydgard 2013-05-31 23:10:14 +02:00
parent f2c316a64a
commit ab4987bc20
7 changed files with 13 additions and 105 deletions

View file

@ -445,16 +445,9 @@ bool NativeIsAtTopLevel()
return false;
}
void NativeTouch(int finger, float x, float y, double time, TouchEvent event)
void NativeTouch(const TouchInput &touch)
{
switch (event) {
case TOUCH_DOWN:
break;
case TOUCH_MOVE:
break;
case TOUCH_UP:
break;
}
screenManager->touch(touch);
}
void NativeMessageReceived(const char *message, const char *value)