Exemple #1
0
 def __init__(self, dest):
     ObjectWithAttributes.__init__(self)
     self.m_dest = dest
Exemple #2
0
 def __init__ (self, name, **attributes):
     ObjectWithAttributes.__init__ (self)
     NamedObject.__init__ (self, name)
     SubjectProto.__init__ (self, {}) # no special abilities
     self.apply_attributes (attributes)
Exemple #3
0
 def __init__(self):
     ObjectWithAttributes.__init__(self)
Exemple #4
0
 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
Exemple #5
0
 def __init__ (self, dest):
     ObjectWithAttributes.__init__ (self)
     self.m_dest = dest
Exemple #6
0
 def __init__ (self):
     ObjectWithAttributes.__init__ (self)
Exemple #7
0
 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