コード例 #1
0
 def __init__(self, dest):
     ObjectWithAttributes.__init__(self)
     self.m_dest = dest
コード例 #2
0
ファイル: item.py プロジェクト: pmachata/unnamable
 def __init__ (self, name, **attributes):
     ObjectWithAttributes.__init__ (self)
     NamedObject.__init__ (self, name)
     SubjectProto.__init__ (self, {}) # no special abilities
     self.apply_attributes (attributes)
コード例 #3
0
 def __init__(self):
     ObjectWithAttributes.__init__(self)
コード例 #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
コード例 #5
0
ファイル: loc.py プロジェクト: pmachata/unnamable
 def __init__ (self, dest):
     ObjectWithAttributes.__init__ (self)
     self.m_dest = dest
コード例 #6
0
ファイル: loc.py プロジェクト: pmachata/unnamable
 def __init__ (self):
     ObjectWithAttributes.__init__ (self)
コード例 #7
0
ファイル: loc.py プロジェクト: pmachata/unnamable
 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