huge fml update

This commit is contained in:
Steffen Schröder
2014-01-19 19:30:21 +01:00
parent 9654b26f2b
commit 771409b8eb
66 changed files with 2303 additions and 134 deletions

View File

@ -15,6 +15,18 @@ class InstallMap implements Element {
protected $name = '';
protected $url = '';
/**
* Create a new InstallMap Element
*
* @param string $name (optional) Map Name
* @param string $url (optional) Map Url
* @return \FML\ManiaCode\InstallMap
*/
public static function create($name = null, $url = null) {
$installMap = new InstallMap($name, $url);
return $installMap;
}
/**
* Construct a new InstallMap Element
*