chore: remove for the moment mouse support
This commit is contained in:
parent
4fb874dea7
commit
538b9bd093
2 changed files with 7 additions and 15 deletions
|
@ -29,13 +29,13 @@ function love.draw()
|
|||
core:draw()
|
||||
end
|
||||
|
||||
function love.mousemoved(x, y, dx, dy)
|
||||
core:mousemoved(x, y, dx, dy)
|
||||
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
|
||||
-- function love.mousepressed( x, y, button, istouch )
|
||||
-- core:mousepressed(x, y, button, istouch)
|
||||
-- end
|
||||
|
||||
function love.keypressed( key, scancode, isrepeat )
|
||||
core:keypressed( key, scancode, isrepeat )
|
||||
|
|
|
@ -41,11 +41,3 @@ end
|
|||
function love.draw()
|
||||
core:draw()
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue