TrackManiaControl/core/Callbacks/Structures/Weapons.php

19 lines
419 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
2017-04-07 17:37:26 +02:00
* @deprecated use ShootMania/Models/Weapons instead
2014-10-10 14:40:00 +02:00
*/
interface Weapons {
const LASER = 1;
const ROCKET = 2;
const NUCLEUS = 3;
const ARROW = 5;
2014-10-24 20:20:12 +02:00
}