コード例 #1
0
 def __init__(self, ids, last_row=None):
     Row.__init__(self, ids, last_row)
     self.sets = {}
     self.cells = self.get_row_template()
     self.row_type = Row.BLOCK
コード例 #2
0
ファイル: bounce_border_row.py プロジェクト: nolangon/bounce
 def __init__(self, ids, last_row=None):
   Row.__init__(self, ids, last_row)
   self.row_type = Row.BORDER
   self.cells = [Cell(i) for i in range(Row.length)]
コード例 #3
0
ファイル: bounce_block_row.py プロジェクト: nolangon/bounce
 def __init__(self, ids, last_row=None):
   Row.__init__(self, ids, last_row)
   self.sets = {}
   self.cells = self.get_row_template()
   self.row_type = Row.BLOCK
コード例 #4
0
 def __init__(self, ids, last_row=None):
     Row.__init__(self, ids, last_row)
     self.row_type = Row.BORDER
     self.cells = [Cell(i) for i in range(Row.length)]