+ Added plugin stubs

This commit is contained in:
Matthew Cech
2019-04-20 00:22:39 -07:00
parent bda3865f59
commit 25c1e9a1a2
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package core.lua;
// To promote flexibility, plugins are lua file with predefined callbacks.
// They are executed between the initial built-in preprocessing and the command parsing.
public class Plugin
{
}
+8
View File
@@ -0,0 +1,8 @@
package core.lua;
// Reads in, handles, and manipulates plugins. Plugins are
// loaded in the order they appear in the folder.
public class PluginManager
{
}