dedimania continue

This commit is contained in:
kremsy
2014-02-16 22:38:14 +01:00
committed by Steffen Schröder
parent deb08cfbd0
commit 6affb6825b
6 changed files with 335 additions and 33 deletions

View File

@ -24,6 +24,7 @@ class Map {
public $mapType = '';
public $mapStyle = '';
public $nbCheckpoints = -1;
public $nbLaps = -1;
/** @var MXMapInfo $mx */
public $mx = null;
public $authorLogin = '';
@ -57,6 +58,7 @@ class Map {
$this->mapType = $mpMap->mapType;
$this->mapStyle = $mpMap->mapStyle;
$this->nbCheckpoints = $mpMap->nbCheckpoints;
$this->nbLaps = $mpMap->nbLaps;
$this->authorNick = $this->authorLogin;
}