*/ public function __construct() { $this->init(); $this->run(); } /** * Initalise * * @author Phil Burton * @return bool */ protected function init() { return true; } /** * Run the Game * * @author Phil Burton */ protected function run() { $game = new Game(); } }