Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class players():
  2. def __init__(self, x, y, width, height):
  3. self.x = x
  4. self.y = y
  5. self.width = width
  6. self.height = height
  7. self.speed = 5
  8. self.playerJumps = False
  9. self.jumpHeight = 10
  10. self.left = False
  11. self.right = False
  12. self.walkCount = 10
  13. self.standing = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement