def __init__(self, dest): ObjectWithAttributes.__init__(self) self.m_dest = dest
def __init__ (self, name, **attributes): ObjectWithAttributes.__init__ (self) NamedObject.__init__ (self, name) SubjectProto.__init__ (self, {}) # no special abilities self.apply_attributes (attributes)
def __init__(self): ObjectWithAttributes.__init__(self)
def __init__(self, name, neighborhood=None): ObjectWithAttributes.__init__(self) NamedObject.__init__(self, name) self.m_neighborhood = neighborhood self.m_connections = set() self.m_clue_tokens = 0
def __init__ (self, dest): ObjectWithAttributes.__init__ (self) self.m_dest = dest
def __init__ (self): ObjectWithAttributes.__init__ (self)
def __init__ (self, name, neighborhood = None): ObjectWithAttributes.__init__ (self) NamedObject.__init__ (self, name) self.m_neighborhood = neighborhood self.m_connections = set () self.m_clue_tokens = 0