22declare(strict_types=1);
24namespace pocketmine\block\utils;
32 public function hasEdgeSupport() : bool{
33 return $this === self::EDGE || $this === self::FULL;
36 public function hasCenterSupport() : bool{
37 return $this === self::CENTER || $this === self::FULL;