public function __construct(Vector3 $v, Level $level, $name, $delay)
 {
     parent::__construct($v->x, $v->y, $v->z);
     $this->name = $name;
     $this->delay = $delay;
     $this->eid = Entity::$entityCount++;
 }
Esempio n. 2
0
 public function __construct(Vector3 $pos, $id, $data = 0)
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->id = $id & 0xfff;
     $this->data = $data;
 }
 public function __construct(Vector3 $pos, Block $b)
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->data = $b->getId() + ($b->getDamage() << 12);
 }
Esempio n. 4
0
 public function __construct(Vector3 $pos, $width = 0, $height = 0)
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->width = $width;
     $this->height = $height;
 }
Esempio n. 5
0
 /**
  * @param Vector3 $pos
  * @param int $text
  * @param string $title
  */
 public function __construct(Vector3 $pos, $text, $title = "")
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->text = $text;
     $this->title = $title;
 }