Advertisement
Guest User

Untitled

a guest
Mar 18th, 2012
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function love.load()
  2. bell = love.graphics.newImage("Files/Bell.png")
  3. love.graphics.setBackgroundColor(50,50,150)
  4. end
  5. function move()
  6. mx = 0
  7. my = 0
  8. while true do
  9. mx = mx + 1
  10. my = my + 1
  11. cox = mx
  12. coy = my
  13. love.timer.sleep(1000)
  14. end
  15. end
  16. function love.draw()
  17. love.graphics.draw(bell,cox,coy)
  18. move()
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement