TrackManiaControl/core/Callbacks/Structures/ShootMania/Models/Weapons.php

19 lines
392 B
PHP
Raw Normal View History

2017-03-25 20:19:45 +01:00
<?php
namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
/**
* Weapons Interface
*
2017-04-07 23:26:35 +02:00
* @api
2017-03-25 20:19:45 +01:00
* @author ManiaControl Team <mail@maniacontrol.com>
2020-01-22 10:39:35 +01:00
* @copyright 2014-2020 ManiaControl Team
2017-03-25 20:19:45 +01: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;
}