pluginManager/-Plugin-/testPlugin2.lua
Ryan Ward bfd0821776 Initial release
Well here it is, a small lua project that i got kinda serious about.

More stuff in the near future
2018-10-24 10:20:22 -04:00

9 lines
245 B
Lua

-- plugin.init("superPlugin")
plugin.OnLoaded(function()
print(PLUGIN_NAME.." has been loaded!")
local epic = plugin.getPluginRef("PluginEpic")
epic.newPerson("Ryan",22,"male")
print(epic.getName())
local list = plugin.getPluginList()
end)