mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-02 19:41:15 +00:00
37 lines
662 B
PHP
37 lines
662 B
PHP
<?php
|
|
/*
|
|
Copyright (C) 2008 by Pauli Nieminen <paniemin@cc.hut.fi>
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2
|
|
or at your option any later version.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
|
|
class Config {
|
|
private $name;
|
|
function __construct($name = null)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function insertDefaults()
|
|
{
|
|
}
|
|
|
|
public function set()
|
|
{
|
|
}
|
|
|
|
public function get()
|
|
{
|
|
}
|
|
|
|
}
|
|
?>
|