Created
May 16, 2019 16:30
-
-
Save PJZ9n/9785a39f569b857310adccce4a67c2c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* @name MyTestPlugin | |
* @main PJZ9n\MyTestPlugin\Main | |
* @version 1.0.0 | |
* @api 3 | |
* @description My Test Plugin | |
* @author PJZ9n | |
*/ | |
namespace PJZ9n\MyTestPlugin { | |
use pocketmine\plugin\PluginBase; | |
class Main extends PluginBase { | |
public function onEnable(): void { | |
$this->getLogger()->info("Hello World!"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment