diff --git a/sonic-radiance.love/core/callbacks.lua b/sonic-radiance.love/core/callbacks.lua index 39fe422..8b3f122 100644 --- a/sonic-radiance.love/core/callbacks.lua +++ b/sonic-radiance.love/core/callbacks.lua @@ -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 ) diff --git a/sonic-radiance.love/main.lua b/sonic-radiance.love/main.lua index 32ffdc6..7298f68 100644 --- a/sonic-radiance.love/main.lua +++ b/sonic-radiance.love/main.lua @@ -40,12 +40,4 @@ 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 +end \ No newline at end of file