doc update
This commit is contained in:
@ -9,6 +9,7 @@ use ManiaControl\General\UsageInformationTrait;
|
||||
/**
|
||||
* Landmark Model
|
||||
*
|
||||
* @api
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014-2017 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
@ -22,6 +23,7 @@ class Landmark implements UsageInformationAble {
|
||||
private $position = null;
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return string
|
||||
*/
|
||||
public function getTag() {
|
||||
@ -29,6 +31,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param string $tag
|
||||
*/
|
||||
public function setTag($tag) {
|
||||
@ -36,6 +39,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return mixed
|
||||
*/
|
||||
public function getOrder() {
|
||||
@ -43,6 +47,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param mixed $order
|
||||
*/
|
||||
public function setOrder($order) {
|
||||
@ -50,6 +55,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return mixed
|
||||
*/
|
||||
public function getId() {
|
||||
@ -57,6 +63,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param mixed $id
|
||||
*/
|
||||
public function setId($id) {
|
||||
@ -64,6 +71,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return \ManiaControl\Callbacks\Structures\ShootMania\Models\Position
|
||||
*/
|
||||
public function getPosition() {
|
||||
@ -71,6 +79,7 @@ class Landmark implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param \ManiaControl\Callbacks\Structures\ShootMania\Models\Position $position
|
||||
*/
|
||||
public function setPosition(Position $position) {
|
||||
|
@ -8,6 +8,7 @@ use ManiaControl\Callbacks\Structures\Common\Models\CommonPlayerScore;
|
||||
/**
|
||||
* PlayerScore Model
|
||||
*
|
||||
* @api
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014-2017 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
|
@ -9,6 +9,7 @@ use ManiaControl\General\UsageInformationTrait;
|
||||
/**
|
||||
* Position Model
|
||||
*
|
||||
* @api
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014-2017 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
@ -21,6 +22,7 @@ class Position implements UsageInformationAble {
|
||||
private $z = 0;
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return int
|
||||
*/
|
||||
public function getX() {
|
||||
@ -28,6 +30,7 @@ class Position implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param int $x
|
||||
*/
|
||||
public function setX($x) {
|
||||
@ -35,6 +38,7 @@ class Position implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return int
|
||||
*/
|
||||
public function getZ() {
|
||||
@ -42,6 +46,7 @@ class Position implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param int $z
|
||||
*/
|
||||
public function setZ($z) {
|
||||
@ -49,6 +54,7 @@ class Position implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @return int
|
||||
*/
|
||||
public function getY() {
|
||||
@ -56,6 +62,7 @@ class Position implements UsageInformationAble {
|
||||
}
|
||||
|
||||
/**
|
||||
* @api
|
||||
* @param int $y
|
||||
*/
|
||||
public function setY($y) {
|
||||
|
@ -7,6 +7,7 @@ use ManiaControl\Callbacks\Structures\Common\Models\CommonTeamScore;
|
||||
/**
|
||||
* Shootmania TeamScore Model
|
||||
*
|
||||
* @api
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014-2017 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
|
@ -5,6 +5,7 @@ namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
|
||||
/**
|
||||
* Weapons Interface
|
||||
*
|
||||
* @api
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014-2017 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
|
Reference in New Issue
Block a user