-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a small Bug with Clickable Buttons and Added RasuLib (Base Addo…
…n Library)
- Loading branch information
Showing
13 changed files
with
462 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
---@class RemixGemHelperPrivate | ||
local Private = select(2, ...) | ||
local const = Private.constants | ||
|
||
local defaultDatabase = { | ||
show_unowned = false, | ||
show_primordial = false, | ||
show_frame = true, | ||
show_helpframe = true | ||
} | ||
|
||
local addon = LibStub("RasuAddon"):CreateAddon( | ||
const.ADDON_NAME, | ||
"RemixGemHelperDB", | ||
defaultDatabase, | ||
Private.Locales | ||
) | ||
for lang, langInfo in pairs(Private.Locales) do | ||
if langInfo.isEditing then | ||
function GetLocale() return lang end | ||
end | ||
end | ||
Private.Addon = addon |
Oops, something went wrong.