├── LossOfControl ├── Media │ ├── Sound │ │ └── 34468.ogg │ └── Texture │ │ └── Cooldown │ │ ├── edge.blp │ │ ├── ping4.blp │ │ ├── star4.blp │ │ ├── cooldown.blp │ │ ├── cooldown2.blp │ │ ├── edge-LoC.blp │ │ ├── starburst.blp │ │ ├── Loc-RedLine.blp │ │ └── loc-shadowbg.blp ├── Libs │ ├── AceDB-3.0 │ │ └── AceDB-3.0.xml │ ├── AceAddon-3.0 │ │ └── AceAddon-3.0.xml │ ├── AceEvent-3.0 │ │ ├── AceEvent-3.0.xml │ │ └── AceEvent-3.0.lua │ ├── AceTimer-3.0 │ │ └── AceTimer-3.0.xml │ ├── CallbackHandler-1.0 │ │ ├── CallbackHandler-1.0.xml │ │ └── CallbackHandler-1.0.lua │ ├── AceConfig-3.0 │ │ ├── AceConfigCmd-3.0 │ │ │ └── AceConfigCmd-3.0.xml │ │ ├── AceConfigDialog-3.0 │ │ │ └── AceConfigDialog-3.0.xml │ │ ├── AceConfigRegistry-3.0 │ │ │ ├── AceConfigRegistry-3.0.xml │ │ │ └── AceConfigRegistry-3.0.lua │ │ ├── AceConfig-3.0.xml │ │ └── AceConfig-3.0.lua │ ├── LibStub │ │ ├── LibStub.toc │ │ ├── tests │ │ │ ├── test3.lua │ │ │ ├── test4.lua │ │ │ ├── test2.lua │ │ │ └── test.lua │ │ └── LibStub.lua │ └── AceGUI-3.0 │ │ ├── AceGUI-3.0.xml │ │ └── widgets │ │ ├── AceGUIWidget-Heading.lua │ │ ├── AceGUIWidget-Button.lua │ │ ├── AceGUIWidget-SimpleGroup.lua │ │ ├── AceGUIWidget-Icon.lua │ │ ├── AceGUIWidget-Label.lua │ │ ├── AceGUIWidget-InlineGroup.lua │ │ ├── AceGUIWidget-BlizOptionsGroup.lua │ │ ├── AceGUIWidget-DropDownGroup.lua │ │ ├── AceGUIWidget-ColorPicker.lua │ │ ├── AceGUIWidget-InteractiveLabel.lua │ │ ├── AceGUIWidget-EditBox.lua │ │ ├── AceGUIWidget-Keybinding.lua │ │ ├── AceGUIWidget-CheckBox.lua │ │ ├── AceGUIWidget-Slider.lua │ │ ├── AceGUIWidget-ScrollFrame.lua │ │ ├── AceGUIWidget-Frame.lua │ │ ├── AceGUIWidget-Window.lua │ │ ├── AceGUIWidget-MultiLineEditBox.lua │ │ ├── AceGUIWidget-TabGroup.lua │ │ └── AceGUIWidget-DropDown-Items.lua ├── LossOfControl.toc ├── LossOfControl.xml ├── LossOfControlOptions.lua ├── LossOfControl.lua └── LossOfControlMixin.lua ├── .vscode └── settings.json └── README.md /LossOfControl/Media/Sound/34468.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Sound/34468.ogg -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Lua.diagnostics.disable": [ 3 | "undefined-global", 4 | "undefined-field" 5 | ] 6 | } -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/edge.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/edge.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/ping4.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/ping4.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/star4.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/star4.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/cooldown.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/cooldown.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/cooldown2.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/cooldown2.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/edge-LoC.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/edge-LoC.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/starburst.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/starburst.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/Loc-RedLine.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/Loc-RedLine.blp -------------------------------------------------------------------------------- /LossOfControl/Media/Texture/Cooldown/loc-shadowbg.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSpector/LossOfControl/HEAD/LossOfControl/Media/Texture/Cooldown/loc-shadowbg.blp -------------------------------------------------------------------------------- /LossOfControl/Libs/AceDB-3.0/AceDB-3.0.xml: -------------------------------------------------------------------------------- 1 | 3 |