LuPPC/src/lua/core/component.lua

10 lines
152 B
Lua
Raw Normal View History

2016-01-05 04:20:40 +11:00
local component = {}
local api = {}
component.api = api
function component.prepare()
print("Assembling initial component tree")
end
return component