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