67 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
 | |
| 
 | |
| 
 | |
| class Landmark {
 | |
| 	private $tag      = "";
 | |
| 	private $order    = 0;
 | |
| 	private $id       = "";
 | |
| 	private $position = null;
 | |
| 
 | |
| 	/**
 | |
| 	 * @return string
 | |
| 	 */
 | |
| 	public function getTag() {
 | |
| 		return $this->tag;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @param string $tag
 | |
| 	 */
 | |
| 	public function setTag($tag) {
 | |
| 		$this->tag = $tag;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @return mixed
 | |
| 	 */
 | |
| 	public function getOrder() {
 | |
| 		return $this->order;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @param mixed $order
 | |
| 	 */
 | |
| 	public function setOrder($order) {
 | |
| 		$this->order = $order;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @return mixed
 | |
| 	 */
 | |
| 	public function getId() {
 | |
| 		return $this->id;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @param mixed $id
 | |
| 	 */
 | |
| 	public function setId($id) {
 | |
| 		$this->id = $id;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @return \ManiaControl\Callbacks\Structures\ShootMania\Models\Position
 | |
| 	 */
 | |
| 	public function getPosition() {
 | |
| 		return $this->position;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @param \ManiaControl\Callbacks\Structures\ShootMania\Models\Position $position
 | |
| 	 */
 | |
| 	public function setPosition(Position $position) {
 | |
| 		$this->position = $position;
 | |
| 	}
 | |
| } |