/**
  * Create a new block interaction, init the prompt block
  *
  * @access public
  * @author Sam, <*****@*****.**>
  * @param  array options
  * @return mixed
  */
 public function __construct($attributes = array(), Item $relatedItem = null, $serial = '')
 {
     parent::__construct($attributes, $relatedItem, $serial);
     $this->prompt = new Prompt(array(), $relatedItem);
 }