From 7492760d4f89018673e60ec27c16396ac5f96722 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Tue, 19 Nov 2024 16:01:29 +0100 Subject: [PATCH] Fix code formatting --- Deliveroo/GameData/GameStrings.cs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) 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); + } }