14 lines
266 B
PHP
14 lines
266 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Mine\SeekerBundle\Controller;
|
||
|
|
|
||
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||
|
|
|
||
|
|
class GameController extends Controller
|
||
|
|
{
|
||
|
|
public function playAction()
|
||
|
|
{
|
||
|
|
return $this->render('MineSeekerBundle:Game:play.html.twig');
|
||
|
|
}
|
||
|
|
}
|