diff options
author | Sewbacca <sewbacca@live.de> | 2022-05-29 20:26:25 +0200 |
---|---|---|
committer | Sewbacca <sewbacca@live.de> | 2022-05-29 20:26:25 +0200 |
commit | 86d70a42239f6a3dcd6e638c53b805c5052bdc57 (patch) | |
tree | 9bc035299eedf095d6ce7ea393a41d47f17d50fa /meta/3rd/love2d/library/love.event.lua | |
parent | 7eaec047d708e84a7c29dd9d70e306d90fac412d (diff) | |
download | lua-language-server-86d70a42239f6a3dcd6e638c53b805c5052bdc57.zip |
Added vararg support
Diffstat (limited to 'meta/3rd/love2d/library/love.event.lua')
-rw-r--r-- | meta/3rd/love2d/library/love.event.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/3rd/love2d/library/love.event.lua b/meta/3rd/love2d/library/love.event.lua index 44339d88..12212c0b 100644 --- a/meta/3rd/love2d/library/love.event.lua +++ b/meta/3rd/love2d/library/love.event.lua @@ -40,7 +40,8 @@ function love.event.pump() end ---@param d? any # Fourth event argument. ---@param e? any # Fifth event argument. ---@param f? any # Sixth event argument. -function love.event.push(n, a, b, c, d, e, f) end +---@vararg any # Further event arguments may follow. +function love.event.push(n, a, b, c, d, e, f, ...) end --- ---Adds the quit event to the queue. |