Poodletooth-iLand/otp/distributed/PotentialAvatar.py

12 lines
339 B
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
class PotentialAvatar:
2015-07-17 11:05:29 -05:00
def __init__(self, id, names, dna, position, allowedName):
2015-03-03 16:10:12 -06:00
self.id = id
self.name = names[0]
self.dna = dna
self.position = position
self.wantName = names[1]
self.approvedName = names[2]
self.rejectedName = names[3]
self.allowedName = allowedName