Guest User

Untitled

a guest
Apr 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. class BodyParts:
  2.     pass
  3.  
  4. class PartyMember:
  5.     def __init__(self, hp):
  6.         self.hp = hp
  7.  
  8. class Scoundrel(PartyMember):
  9.     def __init__(self, hp, body = BodyParts):
  10.         self.hp = hp
  11.         self.body = body
  12.         body.limbs = ['arm']
  13.         body.hat = 'red'
  14.  
  15. nah = Scoundrel(3)
  16. print nah.body.limbs, nah.body.hat
Add Comment
Please, Sign In to add comment