public LuaTString(IReadOnlyMemory memory, IAbsoluteAddress address) { Address = address; _memory = memory; _luaTString = memory.Read<LuaTStringHeader>(address); }
public FontString(WowWrapper wow, IAbsoluteAddress address) : base(wow, address) { }
public EditBox(WowWrapper wow, IAbsoluteAddress address) : base(wow, address) { }
protected VisibleRegion(WowWrapper wow, IAbsoluteAddress address) : base(wow, address) { }
public Texture(WowWrapper wow, IAbsoluteAddress address) : base(wow, address) { }
public Button(WowWrapper wow, IAbsoluteAddress address) : base(wow, address) { }
public LuaTable(IReadOnlyMemory memory, IAbsoluteAddress address) { Address = address; _memory = memory; _luaTable = _memory.Read<LuaTableStuct>(address); }
public Slider(WowWrapper wow, IAbsoluteAddress address) : base(wow, address) { }
public LuaNode(IReadOnlyMemory memory, IAbsoluteAddress address) { Address = address; _memory = memory; _luaNode = address.Deref<LuaNodeStruct>(); }