Skip to content

falkirks/SnippetLoader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SnippetLoader

This is a super simple plugin interface which will load "snippets" (single file plugins). Simple example below.

<?php
/*name: TestSnip
main: snip\MainClass
version: 0.1
author: Falk
api: [1.0.0]
load: POSTWORLD*/
namespace snip;
use pocketmine\plugin\PluginBase;
class MainClass extends PluginBase
{	
	public function onEnable(){
		$this->getLogger()->info("Loaded.");
	}
}

About

Loads .php plugins on PocketMine Alpha 1.4

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages