예제 #1
0
파일: Text.php 프로젝트: aainc/Remila
 public function __construct($x, $y, $text, $font = null, $color = null, $size = null)
 {
     parent::__construct($x, $y);
     $this->text = $text;
     $this->font = $font;
     $this->color = $color;
     $this->size = $size;
 }
예제 #2
0
파일: Composite.php 프로젝트: aainc/Remila
 public function __construct($x, $y, Image $partImage)
 {
     parent::__construct($x, $y);
     $this->partImage = $partImage;
 }