View Single Post
03/20/19, 03:47 PM   #13
Supportic
Join Date: Mar 2019
Posts: 24
Okay, that's understandable. So what's the point to bind functions to a namespace like:

Lua Code:
  1. function uniqueAddonName.myFunction(param1, param2)
  2.     doSomething()
  3. end

then? Instead you can just make it for everything accessable like:

Lua Code:
  1. function myFunction(param1, param2)
  2.     doSomething()
  3. end
  Reply With Quote