LuPPC/src/lua/core/computer.lua

13 lines
171 B
Lua
Raw Normal View History

2016-01-06 08:29:49 +11:00
local computer = {}
2016-01-07 02:58:05 +11:00
local api = {}
computer.api = api
2016-01-05 04:20:40 +11:00
2016-01-06 08:29:49 +11:00
function computer.prepare( ... )
end
2016-01-07 02:58:05 +11:00
function api.pushSignal(...)
--FIXME: ASAP: Implement
end
2016-01-06 08:29:49 +11:00
return computer