aboutsummaryrefslogtreecommitdiff
path: root/src/rlua.h
diff options
context:
space:
mode:
authorghassanpl <kronikarz@gmail.com>2016-08-06 17:03:07 +0200
committerghassanpl <kronikarz@gmail.com>2016-08-06 17:03:07 +0200
commitcfe47cc8541355e9e802a6c2df7df8570c9a3d2a (patch)
tree197829790c7dd766f2b5f44df6e5b64d895b73e4 /src/rlua.h
parent4960e6b6d7b4cba6125cfb8bb2fef043db8e5ba5 (diff)
parent3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f (diff)
downloadraylib-cfe47cc8541355e9e802a6c2df7df8570c9a3d2a.tar.gz
raylib-cfe47cc8541355e9e802a6c2df7df8570c9a3d2a.zip
Merge branch 'develop' of https://github.com/raysan5/raylib into develop
Diffstat (limited to 'src/rlua.h')
-rw-r--r--src/rlua.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/rlua.h b/src/rlua.h
index ee7766ab..77a51ed5 100644
--- a/src/rlua.h
+++ b/src/rlua.h
@@ -1326,12 +1326,6 @@ int lua_IsGestureDetected(lua_State* L)
return 1;
}
-int lua_UpdateGestures(lua_State* L)
-{
- UpdateGestures();
- return 0;
-}
-
int lua_GetTouchPointsCount(lua_State* L)
{
int result = GetTouchPointsCount();
@@ -3589,10 +3583,8 @@ static luaL_Reg raylib_functions[] = {
REG(SetGesturesEnabled)
REG(IsGestureDetected)
- //REG(ProcessGestureEvent)
- REG(UpdateGestures)
- REG(GetTouchPointsCount)
REG(GetGestureDetected)
+ REG(GetTouchPointsCount)
REG(GetGestureHoldDuration)
REG(GetGestureDragVector)
REG(GetGestureDragAngle)