added some callbacks

This commit is contained in:
kremsy
2017-03-25 11:53:55 +01:00
parent f15dab5d42
commit bd2c5a8c9c
7 changed files with 256 additions and 20 deletions

View File

@ -0,0 +1,53 @@
<?php
namespace ManiaControl\Callbacks\Structures\ShootMania;
class Position {
private $x = 0;
private $y = 0;
private $z = 0;
/**
* @return int
*/
public function getX() {
return $this->x;
}
/**
* @param int $x
*/
public function setX($x) {
$this->x = $x;
}
/**
* @return int
*/
public function getZ() {
return $this->z;
}
/**
* @param int $z
*/
public function setZ($z) {
$this->z = $z;
}
/**
* @return int
*/
public function getY() {
return $this->y;
}
/**
* @param int $y
*/
public function setY($y) {
$this->y = $y;
}
}