<?php
/**
* 逃亡
*
*/
class Escape extends Action
{
/**
* @inheritDoc
*/
public function shouldBreak(): bool
{
return true;
}
/**
* @inheritDoc
*/
protected function action(): void
{
Logger::add("{$this->performer->getName()}は逃亡した。");
}
}