Guest User

Untitled

a guest
Apr 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class player():
  2. def __init__(self, image, x, y):
  3. self.health = 100
  4. self.mana = 100
  5. self.ammo = 20
  6. self.image= image
  7. self.xPos=x
  8. self.yPos=y
  9. self.dir=1
  10. def update(self):
  11. self.move()
Add Comment
Please, Sign In to add comment