View Single Post
04/26/17, 07:20 AM   #8
Letho
AddOn Author - Click to view addons
Join Date: Apr 2016
Posts: 238
I usually create a table for my addons name:

Code:
AM.name = "AuraMastery"
AM.version = "0.08a"

function AM.foo()  -- 'public' method
  bar()
end

local function bar()  -- 'private' method
  d("Look at that huge pile of crap!")
end
  Reply With Quote