<?php

class Application extends System
{
  var $Name;
  /** @var AppModuleManager */
  var $ModuleManager;
  var $Modules;

  function __construct()
  {
    parent::__construct();
    $this->Name = 'Application';
    $this->ModuleManager = new AppModuleManager($this);
    $this->Modules = array();
  }

  function Run()
  {

  }
}
