convert ParticleIds to final class with private constructor

I got tired of auto complete suggesting this shit every time I typed `implements Particle`
This commit is contained in:
Dylan K. Taylor 2019-08-19 19:05:59 +01:00
parent e52ba7201c
commit 4dfa335ae7

View File

@ -23,7 +23,12 @@ declare(strict_types=1);
namespace pocketmine\network\mcpe\protocol\types;
interface ParticleIds{
final class ParticleIds{
private function __construct(){
//NOOP
}
public const BUBBLE = 1;
//2 same as 1
public const CRITICAL = 3;