main: add forgotten love.mousepressed

This commit is contained in:
Kazhnuz 2019-02-28 21:31:08 +01:00
parent 15b6c33654
commit 8b436c9bda
1 changed files with 4 additions and 0 deletions

View File

@ -57,3 +57,7 @@ end
function love.mousemoved(x, y, dx, dy)
core:mousemoved(x, y, dx, dy)
end
function love.mousepressed( x, y, button, istouch )
core:mousepressed(x, y, button, istouch)
end