Elytra/src/Ad5001/Elytra/Elytra.php
jasonwynn10 42a28033ed Compact code and remove unused use statements
Correct PhpDoc comments
All spacing is not the same
Version bump due to new feature and BC breaks
2017-08-01 14:41:59 -04:00

11 lines
205 B
PHP

<?php
namespace Ad5001\Elytra;
use pocketmine\item\Armor;
class Elytra extends Armor{
public function __construct($meta = 0, $count = 1){
parent::__construct(444, $meta, $count, "Elytra Wings");
}
}