mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
22 lines
730 B
Python
22 lines
730 B
Python
|
|
|
|
class PotentialAvatar:
|
|
|
|
def __init__(self, id, names, dna, position, allowedName, creator = 1, shared = 1, online = 0, wishState = 'CLOSED', wishName = '', defaultShard = 0, lastLogout = 0):
|
|
self.id = id
|
|
self.name = names[0]
|
|
self.dna = dna
|
|
self.avatarType = None
|
|
self.position = position
|
|
self.wantName = names[1]
|
|
self.approvedName = names[2]
|
|
self.rejectedName = names[3]
|
|
self.allowedName = allowedName
|
|
self.wishState = wishState
|
|
self.wishName = wishName
|
|
self.creator = creator
|
|
self.shared = shared
|
|
self.online = online
|
|
self.defaultShard = defaultShard
|
|
self.lastLogout = lastLogout
|
|
return
|