TrackManiaControl/core/Callbacks/Structures/Weapons.php

18 lines
366 B
PHP
Raw Normal View History

2014-10-10 14:40:00 +02:00
<?php
namespace ManiaControl\Callbacks\Structures;
/**
* Weapons Interface
*
* @author ManiaControl Team <mail@maniacontrol.com>
2017-02-04 11:49:23 +01:00
* @copyright 2014-2017 ManiaControl Team
2014-10-10 14:40:00 +02:00
* @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;
2014-10-24 20:20:12 +02:00
}