Poodletooth-iLand/otp/distributed/PotentialAvatar.py
2015-07-17 19:05:29 +03:00

11 lines
339 B
Python
Executable file

class PotentialAvatar:
def __init__(self, id, names, dna, position, allowedName):
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