mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-02 01:31:14 +00:00
24 lines
210 B
PHP
24 lines
210 B
PHP
<?php
|
|
|
|
class Config {
|
|
private $name;
|
|
function __construct($name = null)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function insertDefaults()
|
|
{
|
|
}
|
|
|
|
public function set()
|
|
{
|
|
}
|
|
|
|
public function get()
|
|
{
|
|
}
|
|
|
|
}
|
|
?>
|