Files
Daybreak/Daybreak/Models/Guildwars/TitleInformation.cs
T
f2cc59a4ab Daybreak 0.9.8.18 (#179)
* 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>
2023-03-20 21:38:53 +02:00

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; }
}