Ejemplo n.º 1
0
 public function _createMobInsideArea()
 {
     $k = Types::getKindFromString($this->kind);
     $pos = $this->_getRandomPositionInsideArea();
     $mob = new Mob('1' . $this->id . '' . $k . '' . count($this->entities), $k, $pos['x'], $pos['y']);
     // @todo bind
     $mob->onMove(array($this->world, 'onMobMoveCallback'));
     return $mob;
 }