<?php

include_once(dirname(__FILE__).'/../../Base/Controller.php');
include_once(dirname(__FILE__).'/../View/Main.php');

class MainController extends Controller
{
  function Show()
  {
    $View = new MainView($this->System);
    return($View->Show());
  }
}
