├── .github └── README.md ├── assets ├── Border.tga ├── Comfortaa-Bold.ttf ├── PTSans-Bold.ttf ├── PTSans-License.txt ├── TargetOfTarget.blp ├── TargetOfTargetSquare.tga ├── UI-CastingBar-Border-Small.blp ├── UI-CastingBar-Flash-Small.blp ├── UI-CastingBar-Small-Shield.blp ├── UI-Classes-Circles.blp ├── UI-PARTYFRAME-FLASH.blp ├── UI-PartyFrame.blp ├── UI-Player-Status.blp ├── UI-TargetingEliteFrame.blp ├── UI-TargetingFrame.blp ├── beige.tga ├── default.tga ├── dualwield01.tga ├── fontAtari.ttf ├── normal.ttf └── units_trinket_border.blp ├── core ├── anchor.lua ├── config.lua ├── core.lua ├── core.xml ├── event.lua ├── preinit.lua └── table.lua ├── modules ├── arena.lua ├── elements │ ├── auras.lua │ ├── castbar.lua │ ├── colour.lua │ ├── cooldown.lua │ ├── minmax.lua │ ├── portraits.lua │ └── trinkets.lua ├── focus.lua ├── init.lua ├── main.lua ├── modules.xml ├── party.lua ├── partytarget.lua ├── player.lua ├── target.lua └── targettarget.lua ├── pw_unitframes.toc └── pw_unitframes.xml /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/.github/README.md -------------------------------------------------------------------------------- /assets/Border.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/Border.tga -------------------------------------------------------------------------------- /assets/Comfortaa-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/Comfortaa-Bold.ttf -------------------------------------------------------------------------------- /assets/PTSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/PTSans-Bold.ttf -------------------------------------------------------------------------------- /assets/PTSans-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/PTSans-License.txt -------------------------------------------------------------------------------- /assets/TargetOfTarget.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/TargetOfTarget.blp -------------------------------------------------------------------------------- /assets/TargetOfTargetSquare.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/TargetOfTargetSquare.tga -------------------------------------------------------------------------------- /assets/UI-CastingBar-Border-Small.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-CastingBar-Border-Small.blp -------------------------------------------------------------------------------- /assets/UI-CastingBar-Flash-Small.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-CastingBar-Flash-Small.blp -------------------------------------------------------------------------------- /assets/UI-CastingBar-Small-Shield.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-CastingBar-Small-Shield.blp -------------------------------------------------------------------------------- /assets/UI-Classes-Circles.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-Classes-Circles.blp -------------------------------------------------------------------------------- /assets/UI-PARTYFRAME-FLASH.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-PARTYFRAME-FLASH.blp -------------------------------------------------------------------------------- /assets/UI-PartyFrame.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-PartyFrame.blp -------------------------------------------------------------------------------- /assets/UI-Player-Status.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-Player-Status.blp -------------------------------------------------------------------------------- /assets/UI-TargetingEliteFrame.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-TargetingEliteFrame.blp -------------------------------------------------------------------------------- /assets/UI-TargetingFrame.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/UI-TargetingFrame.blp -------------------------------------------------------------------------------- /assets/beige.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/beige.tga -------------------------------------------------------------------------------- /assets/default.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/default.tga -------------------------------------------------------------------------------- /assets/dualwield01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/dualwield01.tga -------------------------------------------------------------------------------- /assets/fontAtari.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/fontAtari.ttf -------------------------------------------------------------------------------- /assets/normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/normal.ttf -------------------------------------------------------------------------------- /assets/units_trinket_border.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/assets/units_trinket_border.blp -------------------------------------------------------------------------------- /core/anchor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/anchor.lua -------------------------------------------------------------------------------- /core/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/config.lua -------------------------------------------------------------------------------- /core/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/core.lua -------------------------------------------------------------------------------- /core/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/core.xml -------------------------------------------------------------------------------- /core/event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/event.lua -------------------------------------------------------------------------------- /core/preinit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/preinit.lua -------------------------------------------------------------------------------- /core/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/core/table.lua -------------------------------------------------------------------------------- /modules/arena.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/arena.lua -------------------------------------------------------------------------------- /modules/elements/auras.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/auras.lua -------------------------------------------------------------------------------- /modules/elements/castbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/castbar.lua -------------------------------------------------------------------------------- /modules/elements/colour.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/colour.lua -------------------------------------------------------------------------------- /modules/elements/cooldown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/cooldown.lua -------------------------------------------------------------------------------- /modules/elements/minmax.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/minmax.lua -------------------------------------------------------------------------------- /modules/elements/portraits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/portraits.lua -------------------------------------------------------------------------------- /modules/elements/trinkets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/elements/trinkets.lua -------------------------------------------------------------------------------- /modules/focus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/focus.lua -------------------------------------------------------------------------------- /modules/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/init.lua -------------------------------------------------------------------------------- /modules/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/main.lua -------------------------------------------------------------------------------- /modules/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/modules.xml -------------------------------------------------------------------------------- /modules/party.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/party.lua -------------------------------------------------------------------------------- /modules/partytarget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/partytarget.lua -------------------------------------------------------------------------------- /modules/player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/player.lua -------------------------------------------------------------------------------- /modules/target.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/target.lua -------------------------------------------------------------------------------- /modules/targettarget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/modules/targettarget.lua -------------------------------------------------------------------------------- /pw_unitframes.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/pw_unitframes.toc -------------------------------------------------------------------------------- /pw_unitframes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/pw_unitframes/HEAD/pw_unitframes.xml --------------------------------------------------------------------------------