add mousemoved callback to gamestate callbacks (added in LOVE 0.9.2)

This commit is contained in:
Harris Munir 2015-03-18 20:08:38 -05:00
parent b18c399def
commit f984cc87e6

View File

@ -69,10 +69,10 @@ end
local all_callbacks = {
'draw', 'errhand', 'focus', 'keypressed', 'keyreleased', 'mousefocus',
'mousepressed', 'mousereleased', 'quit', 'resize', 'textinput',
'threaderror', 'update', 'visible', 'gamepadaxis', 'gamepadpressed',
'gamepadreleased', 'joystickadded', 'joystickaxis', 'joystickhat',
'joystickpressed', 'joystickreleased', 'joystickremoved'
'mousemoved', 'mousepressed', 'mousereleased', 'quit', 'resize',
'textinput', 'threaderror', 'update', 'visible', 'gamepadaxis',
'gamepadpressed', 'gamepadreleased', 'joystickadded', 'joystickaxis',
'joystickhat', 'joystickpressed', 'joystickreleased', 'joystickremoved'
}
function GS.registerEvents(callbacks)