示例#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
 public function __construct($x, $y, Image $partImage)
 {
     parent::__construct($x, $y);
     $this->partImage = $partImage;
 }