New features coming soon. Redoing networking management system threads are mostly done, whats left are some threaded objects like systemthreadedconnection
11 lines
209 B
Lua
11 lines
209 B
Lua
_G["__CHANNEL__"] = {}
|
|
local channel = {}
|
|
channel.__index = channel
|
|
|
|
-- Creates/Gets a channel of name
|
|
function channel:newChannel(name)
|
|
local chan = _G["__CHANNEL__"]
|
|
if chan then
|
|
|
|
end
|
|
end |