Home > Software engineering >  What is the namespace for PluginBase file in PocketMine?
What is the namespace for PluginBase file in PocketMine?

Time:01-10

I can't find the namespace for PluginBase in PocketMine-MP

I expected it to be found, but Error because it was unfound

CodePudding user response:

use pocketmine\plugin\PluginBase;

https://github.com/pmmp/PocketMine-MP/blob/stable/src/plugin/PluginBase.php

  • Related