This addon provides the base UI for other plugins (addons) which can support players while playing World of Warcraft.
By itself this addon will create a basic window and minimap button (some more base level features to be added)
To register a module you can use;
TheBoringDad:RegisterModule(module)
Your plugin should define a launcher table as such
Pure Lua
local f = CreateFrame("FRAME")
f.launcher = {
name = "YourAddon",
icon = 123456,
}
TheBoringDad:RegisterModule(f)