remove utils\Color, use new pocketmine/color class

we're so close to separating protocol from core !!!
This commit is contained in:
Dylan K. Taylor
2020-05-14 20:38:08 +01:00
parent 4437756987
commit 86db3af896
17 changed files with 50 additions and 145 deletions

View File

@ -23,10 +23,10 @@ declare(strict_types=1);
namespace pocketmine\world\particle;
use pocketmine\color\Color;
use pocketmine\math\Vector3;
use pocketmine\network\mcpe\protocol\LevelEventPacket;
use pocketmine\network\mcpe\protocol\types\ParticleIds;
use pocketmine\utils\Color;
class DustParticle implements Particle{
/** @var Color */

View File

@ -23,10 +23,10 @@ declare(strict_types=1);
namespace pocketmine\world\particle;
use pocketmine\color\Color;
use pocketmine\math\Vector3;
use pocketmine\network\mcpe\protocol\LevelEventPacket;
use pocketmine\network\mcpe\protocol\types\ParticleIds;
use pocketmine\utils\Color;
class InstantEnchantParticle implements Particle{
/** @var Color */

View File

@ -23,9 +23,9 @@ declare(strict_types=1);
namespace pocketmine\world\particle;
use pocketmine\color\Color;
use pocketmine\math\Vector3;
use pocketmine\network\mcpe\protocol\LevelEventPacket;
use pocketmine\utils\Color;
class PotionSplashParticle implements Particle{