Advertisement
jabela

10 Road Markings

Dec 20th, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def road_markings(marky):
  2.     for i in reversed(range(0, 1800,120)):
  3.         pygame.draw.rect(window, (255, 255, 255),(190, marky-i, 20, 100))
  4.     return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement