Poodletooth-iLand/otp/distributed/PotentialAvatar.py

12 lines
339 B
Python
Raw Permalink Normal View History

2015-03-03 22:10:12 +00:00
class PotentialAvatar:
2015-07-17 16:05:29 +00:00
def __init__(self, id, names, dna, position, allowedName):
2015-03-03 22:10:12 +00: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