mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
chore: Fix compiler complaints
This commit is contained in:
parent
413fea4349
commit
f0021bc8f9
3 changed files with 6 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ public unsafe class Status
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the source ID of this status.
|
/// Gets the source ID of this status.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public uint SourceId => this.Struct->SourceId;
|
public uint SourceId => this.Struct->SourceObject.ObjectId;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the source actor associated with this status.
|
/// Gets the source actor associated with this status.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
using Dalamud.Game.NativeWrapper;
|
|
||||||
using Dalamud.Bindings.ImGui;
|
using Dalamud.Bindings.ImGui;
|
||||||
|
using Dalamud.Game.NativeWrapper;
|
||||||
using Dalamud.Game.Text.SeStringHandling.Payloads;
|
using Dalamud.Game.Text.SeStringHandling.Payloads;
|
||||||
using Dalamud.Hooking;
|
using Dalamud.Hooking;
|
||||||
using Dalamud.Interface.Utility;
|
using Dalamud.Interface.Utility;
|
||||||
|
|
|
||||||
|
|
@ -162,6 +162,10 @@ public unsafe struct GameInventoryItem : IEquatable<GameInventoryItem>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a list of materia entries for this item. Exists as a user-friendly interface to <see cref="Materia"/> and
|
||||||
|
/// <see cref="MateriaGrade"/>.
|
||||||
|
/// </summary>
|
||||||
public IReadOnlyList<MateriaEntry> MateriaEntries
|
public IReadOnlyList<MateriaEntry> MateriaEntries
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue