DMenu:AddOption
Description
Add an option to the DMenu
Arguments
Returns
Example
Creates a DMenu with 2 options: One that kills yourself; One that does nothing.
local m = DermaMenu()
m:AddOption( "Suicide", function() RunConsoleCommand("kill") end )
m:AddOption( "It does nothing" )
m:Open()