Skip to content

Instantly share code, notes, and snippets.

@PJZ9n
Created May 16, 2019 16:30
Show Gist options
  • Save PJZ9n/9785a39f569b857310adccce4a67c2c1 to your computer and use it in GitHub Desktop.
Save PJZ9n/9785a39f569b857310adccce4a67c2c1 to your computer and use it in GitHub Desktop.
<?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