Skip to content

Releases: b0nn133/PromisedSignal

v1.01

16 Mar 14:59
e4c1239

Choose a tag to compare

Changes
Added multi-connections

local sig = PromisedSignal.new()
sig:Connect(function()
       print("Hello from Connection 1!")
end)

sig:Connect(function()
       print("Hello from Connection 2!")
end)

sig:FireAsync() 
-- Hello From Connection 1!
-- Hello From Connection 2!

v1.00

15 Mar 17:19
2aaa16c

Choose a tag to compare

The first release of PromisedSignal