callbacks improvements begin

This commit is contained in:
kremsy
2014-10-10 14:40:00 +02:00
parent 9642433363
commit 1feeb768b2
6 changed files with 152 additions and 2 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace ManiaControl\Callbacks\Structures;
/**
* Weapons Interface
*
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 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;
}