<?php

class ModuleConfig extends Module
{
  function __construct(System $System)
  {
    parent::__construct($System);
    $this->Name = 'Config';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPLv3';
    $this->Description = 'Configuration support for other modules';
    $this->Dependencies = array(ModuleSystem::GetName());
    $this->Type = ModuleType::System;
  }
}
