mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
[Api13] Remove obsoletes (#2323)
* Remove IFate.HasExpBonus * Remove IAddonEventManager.AddonEventHandler * Remove obsolete filesystem functions from Util * Remove more obsoletes
This commit is contained in:
parent
2aba71f8f2
commit
564c220ed2
11 changed files with 13 additions and 219 deletions
|
|
@ -3,7 +3,6 @@ using System.Numerics;
|
|||
using Dalamud.Data;
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
using Dalamud.Memory;
|
||||
using Dalamud.Utility;
|
||||
|
||||
using Lumina.Excel;
|
||||
|
||||
|
|
@ -69,12 +68,6 @@ public interface IFate : IEquatable<IFate>
|
|||
/// </summary>
|
||||
byte Progress { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this <see cref="Fate"/> has a EXP bonus.
|
||||
/// </summary>
|
||||
[Obsolete($"Use {nameof(HasBonus)} instead")]
|
||||
bool HasExpBonus { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this <see cref="Fate"/> has a bonus.
|
||||
/// </summary>
|
||||
|
|
@ -222,10 +215,6 @@ internal unsafe partial class Fate : IFate
|
|||
/// <inheritdoc/>
|
||||
public byte Progress => this.Struct->Progress;
|
||||
|
||||
/// <inheritdoc/>
|
||||
[Api13ToDo("Remove")]
|
||||
public bool HasExpBonus => this.HasBonus;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public bool HasBonus => this.Struct->IsBonus;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue