Skip to content

Commit

Permalink
Merge pull request #97 from Haselnussbomber/fix-rawrow-sheet-attribut…
Browse files Browse the repository at this point in the history
…e-missing

Fix SheetAttributeMissingException for RawRow and RawSubrow
  • Loading branch information
NotAdam authored Nov 3, 2024
2 parents 406e08e + 9350070 commit f96f062
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Lumina/Excel/RawRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ namespace Lumina.Excel;
/// <remarks>
/// This type is designed to be used to read from arbitrary columns and offsets.
/// </remarks>
[Sheet]
public readonly struct RawRow( ExcelPage page, uint offset, uint row ) : IExcelRow<RawRow>
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/Lumina/Excel/RawSubrow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace Lumina.Excel;
/// An <see cref="IExcelSubrow{T}"/> type for explicitly reading data from an <see cref="ExcelPage"/>.
/// </summary>
/// <inheritdoc cref="RawRow"/>
[Sheet]
public readonly struct RawSubrow( ExcelPage page, uint offset, uint row, ushort subrow ) : IExcelSubrow<RawSubrow>
{
/// <inheritdoc cref="RawRow.Page"/>
Expand Down

0 comments on commit f96f062

Please sign in to comment.