callback implementation

This commit is contained in:
kremsy
2017-03-25 20:19:45 +01:00
parent 8a9ae9465a
commit d6995f211d
18 changed files with 380 additions and 45 deletions

View File

@ -1,10 +1,4 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 25. Mär. 2017
* Time: 11:37
*/
namespace ManiaControl\Callbacks\Structures\ShootMania\Models;

View File

@ -1,14 +1,8 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 25. Mär. 2017
* Time: 12:44
*/
namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
//TODO describtion
class PlayerScore {
}

View File

@ -3,7 +3,7 @@
namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
//TODO describtion
class Position {
private $x = 0;
private $y = 0;

View File

@ -1,14 +1,8 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 25. Mär. 2017
* Time: 12:43
*/
namespace ManiaControl\Callbacks\Structures\ShootMania\Models;
//TODO describtion
class TeamScore {
private $id;
private $name;

View File

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