diff --git a/Deliveroo/GameData/GameStrings.cs b/Deliveroo/GameData/GameStrings.cs index 81fc40d..28b474b 100644 --- a/Deliveroo/GameData/GameStrings.cs +++ b/Deliveroo/GameData/GameStrings.cs @@ -42,14 +42,16 @@ internal sealed class GameStrings [Sheet("custom/000/ComDefGrandCompanyOfficer_00073")] [SuppressMessage("Performance", "CA1812")] - private readonly struct ComDefGrandCompanyOfficer(ExcelPage page, uint offset, uint row) : IQuestDialogueText, IExcelRow + private readonly struct ComDefGrandCompanyOfficer(ExcelPage page, uint offset, uint row) + : IQuestDialogueText, IExcelRow { - public uint RowId => row; + public uint RowId => row; - public ReadOnlySeString Key => page.ReadString(offset, offset); - public ReadOnlySeString Value => page.ReadString(offset + 4, offset); + public ReadOnlySeString Key => page.ReadString(offset, offset); + public ReadOnlySeString Value => page.ReadString(offset + 4, offset); - static ComDefGrandCompanyOfficer IExcelRow.Create(ExcelPage page, uint offset, uint row) => - new(page, offset, row); -} + static ComDefGrandCompanyOfficer IExcelRow.Create(ExcelPage page, uint offset, + uint row) => + new(page, offset, row); + } }