_hx_function_to_instance_function.lua 178 B

12345678910
  1. local function _hx_functionToInstanceFunction(f)
  2. if type(f) == "function" then
  3. return function(self,...)
  4. return f(...)
  5. end
  6. else
  7. return f
  8. end
  9. end