コード例 #1
0
ファイル: LetterCell.php プロジェクト: pierrelemee/mfl-parser
 public function __construct($x, $y, $letter, array $dashes)
 {
     parent::__construct($x, $y);
     $this->letter = $letter;
     $this->dashes = $dashes;
 }
コード例 #2
0
 public function __construct($x, $y)
 {
     parent::__construct($x, $y);
 }
コード例 #3
0
ファイル: ClueCell.php プロジェクト: pierrelemee/mfl-parser
 public function __construct($x, $y, array $clues)
 {
     parent::__construct($x, $y);
     $this->clues = $clues;
 }