This lib should help to handle Frames.
API:
UICache - an extended Implementation of Blizzards FrameCache
loadScrips(taget, mixin) - Mixin data from template
MixinTemplate
---Example mixin ---@class MyFrameMixin : Frame local mixin = {};
mixin:<OnScriptHandler>
function mixin:OnLoad(...) self:DoSemething(); end
mixin:on<WoW-Event:camelcase>
automatic register the frame to the event
--- will automatic register the frame to PLAYER_LOGIN event function mixin:onPlayerLogin(...) self:DoSemething(); end

