Example:
handler = {
handlerFunction = function() end,
}
In the above example, how would I get handler to handerFunction?
Edited by Selim, 05 February 2016 - 03:15 PM.
Posted 05 February 2016 - 03:09 PM
handler = {
handlerFunction = function() end,
}
In the above example, how would I get handler to handerFunction?
Edited by Selim, 05 February 2016 - 03:15 PM.
Posted 05 February 2016 - 03:24 PM
local handler = {}
handler.handlerFunction = function() return handler end
Posted 05 February 2016 - 03:25 PM
Posted 05 February 2016 - 03:26 PM
Lyqyd, on 05 February 2016 - 03:24 PM, said:
local handler = {}
handler.handlerFunction = function() return handler end
Selim, on 05 February 2016 - 03:25 PM, said:
Posted 05 February 2016 - 03:29 PM
0 members, 2 guests, 0 anonymous users