TrackManiaControl/core/Callbacks/Structures/ShootMania/OnBasePlayerObjectTimeStruc...

66 lines
1.4 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Callbacks\Structures\ShootMania;
2017-04-13 19:14:23 +02:00
use ManiaControl\Callbacks\Structures\Common\BasePlayerTimeStructure;
use ManiaControl\ManiaControl;
/**
* Structure Class for the OnPlayerTouchesObject Structure Callback
*
2017-04-07 23:26:35 +02:00
* @api
* @author ManiaControl Team <mail@maniacontrol.com>
2020-01-22 10:39:35 +01:00
* @copyright 2014-2020 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
2017-04-13 19:14:23 +02:00
class OnBasePlayerObjectTimeStructure extends BasePlayerTimeStructure {
private $objectId;
private $modelId;
private $modelName;
2017-04-07 23:26:35 +02:00
/**
* OnPlayerObjectStructure constructor.
*
* @param \ManiaControl\ManiaControl $maniaControl
* @param $data
*/
public function __construct(ManiaControl $maniaControl, $data) {
parent::__construct($maniaControl, $data);
$this->objectId = $this->getPlainJsonObject()->objectid;
$this->modelId = $this->getPlainJsonObject()->modelid;
$this->modelName = $this->getPlainJsonObject()->modelname;
}
/**
* < The id of the object
*
2017-04-07 23:26:35 +02:00
* @api
* @return string
*/
public function getObjectId() {
return $this->objectId;
}
/**
* < The id of the object model
*
2017-04-07 23:26:35 +02:00
* @api
* @return string
*/
public function getModelId() {
return $this->modelId;
}
/**
* < The name of the object model
*
2017-04-07 23:26:35 +02:00
* @api
* @return string
*/
public function getModelName() {
return $this->modelName;
}
}