예제 #1
0
파일: Grid.php 프로젝트: NickBelhomme/Game
 /**
  * adds an action to the action stack
  *
  * @see Game\Action.Action::addAction()
  * @return Game\Grid
  */
 public function addAction(AbstractAction $action)
 {
     $this->actions[$action->getName()] = $action;
     $action->setGrid($this);
     return $this;
 }
예제 #2
0
 /**
  * adds an action to the action stack
  *
  * @see Game\Action.Action::addAction()
  * @return Game\Tile
  */
 public function addAction(AbstractAction $action)
 {
     $action->setSubject($this);
     $this->actions[$action->getName()] = $action;
     return $this;
 }