mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Improve GWCA bindings generator based on headers * Move all structs to gwca * Progress * Complete parser work * More generator adjustments * GWCA fixes * GWCA improvements * GWCA fixes * GWCA fixes * GWCA fixes * GWCA fixes * Fix API usage of GWCA * Update GWCA --------- Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
12 lines
438 B
C#
12 lines
438 B
C#
using Daybreak.Shared.Models.Builds;
|
|
|
|
namespace Daybreak.Shared.Models.FocusView;
|
|
public sealed class BuildComponentContext
|
|
{
|
|
public required bool IsInOutpost { get; init; }
|
|
public required uint PrimaryProfessionId { get; init; }
|
|
public required uint UnlockedProfessions { get; init; }
|
|
public required uint[] CharacterUnlockedSkills { get; init; }
|
|
public required List<IBuildEntry> AvailableBuilds { get; init; }
|
|
}
|