View Single Post
09-29-21, 03:09 PM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Here's the bare minimum if those buttons are standard button frames:

Lua Code:
  1. local Masque=LibStub("Masque",true)
  2. if Masque then
  3.     local group=Masque:Group("SamyTotemTimers")
  4.     group:AddButton(button1)
  5.     group:AddButton(button2)
  6. end

You can browse the Masque wiki if you need more options: https://github.com/SFX-WoW/Masque/wiki
  Reply With Quote