Returns the current x-position of the mouse.
x = love.mouse.getX( )
None.
number x
Draw a vertical line at the mouse's x-position.
function love.draw() local x = love.mouse.getX() love.graphics.line(x,0, x,love.graphics.getHeight()) end