├── .gitignore ├── LICENSE ├── README.md ├── lang └── en_us.json ├── mcdreforged.plugin.json ├── my_plugin ├── __init__.py └── my_lib.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/README.md -------------------------------------------------------------------------------- /lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/lang/en_us.json -------------------------------------------------------------------------------- /mcdreforged.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/mcdreforged.plugin.json -------------------------------------------------------------------------------- /my_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/my_plugin/__init__.py -------------------------------------------------------------------------------- /my_plugin/my_lib.py: -------------------------------------------------------------------------------- 1 | def do_something(): 2 | pass 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCDReforged/PluginTemplate/HEAD/requirements.txt --------------------------------------------------------------------------------