diff options
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. |