mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
ef513e1230
* Bump version to 0.9.10.1 * Bump Microsoft.Web.WebView2 from 1.0.3719.77 to 1.0.3800.47 (#1442) --- updated-dependencies: - dependency-name: Microsoft.Web.WebView2 dependency-version: 1.0.3800.47 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Improve mod view responsiveness (#1443) * Improve application launcher logging (Closes #1441) (#1444) * Damage modifier 0x248 (Closes #1438) (#1445) * Initial commit * Setup generator * Progress * Update generator * Initial commit * Setup generator * Progress * Update generator * Fix library loading * Move code to gwca * Fix leave party * Disable console on Release * Add more exports to gwca * Upgrade gwca * Fixes to character selector * Fix GetWindowHandle * Move character selector to frame based * Fix config spamming --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Daybreak.API.Interop.GuildWars;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
[GWCAEquivalent("Inventory")]
|
|
public readonly unsafe struct Inventory
|
|
{
|
|
public readonly Bag* UnusedBag;
|
|
public readonly Bag* Backpack;
|
|
public readonly Bag* BeltPouch;
|
|
public readonly Bag* Bag1;
|
|
public readonly Bag* Bag2;
|
|
public readonly Bag* EquipmentPack;
|
|
public readonly Bag* MaterialStorage;
|
|
public readonly Bag* UnclaimedItems;
|
|
public readonly Bag* Storage1;
|
|
public readonly Bag* Storage2;
|
|
public readonly Bag* Storage3;
|
|
public readonly Bag* Storage4;
|
|
public readonly Bag* Storage5;
|
|
public readonly Bag* Storage6;
|
|
public readonly Bag* Storage7;
|
|
public readonly Bag* Storage8;
|
|
public readonly Bag* Storage9;
|
|
public readonly Bag* Storage10;
|
|
public readonly Bag* Storage11;
|
|
public readonly Bag* Storage12;
|
|
public readonly Bag* Storage13;
|
|
public readonly Bag* Storage14;
|
|
public readonly Bag* EquippedItems;
|
|
public readonly Item* Bundle;
|
|
public readonly uint StoragePanesUnlocked;
|
|
|
|
public readonly Bag*[] Bags => [
|
|
this.Backpack,
|
|
this.BeltPouch,
|
|
this.Bag1,
|
|
this.Bag2,
|
|
this.EquipmentPack,
|
|
this.MaterialStorage,
|
|
this.UnclaimedItems,
|
|
this.Storage1,
|
|
this.Storage2,
|
|
this.Storage3,
|
|
this.Storage4,
|
|
this.Storage5,
|
|
this.Storage6,
|
|
this.Storage7,
|
|
this.Storage8,
|
|
this.Storage9,
|
|
this.Storage10,
|
|
this.Storage11,
|
|
this.Storage12,
|
|
this.Storage13,
|
|
this.Storage14,
|
|
this.EquippedItems
|
|
];
|
|
}
|