<?php
/* uncomment for debugging
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();
*/
class GameController extends CustomControllerAction
{
const CONTROLLER= 'game';
public function init()
{
parent::init();
}
public function indexAction()
{
$this->view->pagetitle= "Home";
//add links to list of games
}
public function tetrisAction()
{
$this->view->pagetitle= "Tetris";
}
}
?>