Skip to content

Instantly share code, notes, and snippets.

/Maneuver.lua Secret

Created January 26, 2016 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/323b5dc4352df3cfb43e to your computer and use it in GitHub Desktop.
Save anonymous/323b5dc4352df3cfb43e to your computer and use it in GitHub Desktop.
Maneuver = {}
Maneuver.name = "Maneuver"
error("test")
function Maneuver.Initialize(args, callback)
if callback ~= self.name then return end
SLASH_COMMANDS["/mm"] = function()
d("Hello World!")
end
end
GetEventManager():RegisterForEvent(self.name, EVENT_ADD_ON_LOADED, function(...), self.Initialize(...) end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment