TrackManiaControl/core/Callbacks/Structures/ShootMania/OnPlayerRequestActionChange...

41 lines
1.0 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 OnPlayerRequestActionChange 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 OnPlayerRequestActionChange extends BasePlayerTimeStructure {
private $actionChange;
2017-04-07 23:26:35 +02:00
/**
* OnPlayerRequestActionChange constructor.
*
* @param \ManiaControl\ManiaControl $maniaControl
* @param $data
*/
public function __construct(ManiaControl $maniaControl, $data) {
parent::__construct($maniaControl, $data);
2017-03-29 20:38:46 +02:00
$this->actionChange = $this->getPlainJsonObject()->actionchange;
}
/**
* < Can be -1 (request previous action) or 1 (request next action)
*
2017-04-07 23:26:35 +02:00
* @api
* @return string
*/
public function getActionChange() {
return $this->actionChange;
}
}