added CoralType enum

This commit is contained in:
Dylan K. Taylor 2020-11-14 16:24:13 +00:00
parent 06efad94b6
commit 4ade7b6225

View File

@ -0,0 +1,69 @@
<?php
/*
*
* ____ _ _ __ __ _ __ __ ____
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @author PocketMine Team
* @link http://www.pocketmine.net/
*
*
*/
declare(strict_types=1);
namespace pocketmine\block\utils;
use pocketmine\utils\EnumTrait;
/**
* This doc-block is generated automatically, do not modify it manually.
* This must be regenerated whenever registry members are added, removed or changed.
* @see \pocketmine\utils\RegistryUtils::_generateMethodAnnotations()
*
* @method static CoralType TUBE()
* @method static CoralType BRAIN()
* @method static CoralType BUBBLE()
* @method static CoralType FIRE()
* @method static CoralType HORN()
*/
final class CoralType{
use EnumTrait {
__construct as Enum___construct;
}
/** @var int */
private $magicNumber;
/** @var string */
private $displayName;
protected static function setup() : void{
self::registerAll(
new self("tube", "Tube", 0),
new self("brain", "Brain", 1),
new self("bubble", "Bubble", 2),
new self("fire", "Fire", 3),
new self("horn", "Horn", 4),
);
}
private function __construct(string $name, string $displayName, int $magicNumber){
$this->Enum___construct($name);
$this->magicNumber = $magicNumber; //TODO: remove this
$this->displayName = $displayName;
}
public function getDisplayName() : string{ return $this->displayName; }
/** @deprecated */
public function getMagicNumber() : int{ return $this->magicNumber; }
}