19 lines
		
	
	
		
			392 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			392 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
 | 
						|
 | 
						|
/**
 | 
						|
 * Weapons Interface
 | 
						|
 *
 | 
						|
 * @api
 | 
						|
 * @author    ManiaControl Team <mail@maniacontrol.com>
 | 
						|
 * @copyright 2014-2020 ManiaControl Team
 | 
						|
 * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | 
						|
 */
 | 
						|
interface Weapons {
 | 
						|
	const LASER   = 1;
 | 
						|
	const ROCKET  = 2;
 | 
						|
	const NUCLEUS = 3;
 | 
						|
	const ARROW   = 5;
 | 
						|
}
 |