mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-23 08:45:06 +00:00
* Minimap implementation * Fix minimap * Add debounce logic to entities positions * Cleanup * Fix x64 build memory reading Move build to x64 Fix entity debouncing Added some backstops to prevent reading corrupted memory * Add minimap zooming and panning functionality Add main window position saving procedure * Increment version --------- Co-authored-by: Alex Macocian <amacocian@hotmail.com>
21 lines
586 B
C#
21 lines
586 B
C#
namespace Daybreak.Models.Guildwars;
|
|
|
|
public readonly struct TitleInformation
|
|
{
|
|
public bool IsValid => this.CurrentPoints != 0 && this.PointsForCurrentRank != 0 && this.PointsForNextRank != 0 && this.TierNumber != 0 && this.MaxTierNumber != 0;
|
|
|
|
public bool? IsPercentage { get; init; }
|
|
|
|
public uint? CurrentPoints { get; init; }
|
|
|
|
public uint? PointsForCurrentRank { get; init; }
|
|
|
|
public uint? PointsForNextRank { get; init; }
|
|
|
|
public uint? TierNumber { get; init; }
|
|
|
|
public uint? MaxTierNumber { get; init; }
|
|
|
|
public Title? Title { get; init; }
|
|
}
|