From de85b671e71d17004bb58bbe8f0524da5a40fe70 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sun, 1 Jan 2023 19:41:25 +0100 Subject: [PATCH] fix: correct usings --- Samples/FileClient/App.cs | 2 ++ Samples/FileClient/Client.cs | 2 ++ Samples/FileClient/Program.cs | 1 + .../Converters/Packets/FcPacketConverterTests.cs | 2 ++ 4 files changed, 7 insertions(+) diff --git a/Samples/FileClient/App.cs b/Samples/FileClient/App.cs index 49c28d4c3385979ef8ee4bd7d953398b8f851a0e..d4a087a9be89f398f4e86ac433d73ae5dfe3dd16 100644 --- a/Samples/FileClient/App.cs +++ b/Samples/FileClient/App.cs @@ -9,6 +9,8 @@ using Microsoft.Extensions.Logging; using NosSmooth.Core.Client; using NosSmooth.Core.Extensions; using NosSmooth.Data.NOSFiles; +using NosSmooth.PacketSerializer.Extensions; +using NosSmooth.PacketSerializer.Packets; using Remora.Results; namespace FileClient; diff --git a/Samples/FileClient/Client.cs b/Samples/FileClient/Client.cs index 71ea41c21c1cb8160b74fcb163772a477aeee3b5..95cd724b75b6f23ed4c8f026cf0cbb24b21f497b 100644 --- a/Samples/FileClient/Client.cs +++ b/Samples/FileClient/Client.cs @@ -11,7 +11,9 @@ using NosSmooth.Core.Commands; using NosSmooth.Core.Extensions; using NosSmooth.Core.Packets; using NosSmooth.Packets; +using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; +using NosSmooth.PacketSerializer.Errors; using Remora.Results; namespace FileClient; diff --git a/Samples/FileClient/Program.cs b/Samples/FileClient/Program.cs index b532d2b8da183bade0d86e26873305fd32a336a4..790581a7887f2a6c6e5ed68260c5d1f85e58a3ef 100644 --- a/Samples/FileClient/Program.cs +++ b/Samples/FileClient/Program.cs @@ -16,6 +16,7 @@ using NosSmooth.Data.NOSFiles.Extensions; using NosSmooth.Data.NOSFiles.Options; using NosSmooth.Game.Extensions; using NosSmooth.Packets; +using NosSmooth.PacketSerializer; namespace FileClient; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs index 3a051edf84e606304f1624362b43a52e9ff67699..f768a900df672067da0169ed3fb403de568d2f82 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs @@ -7,7 +7,9 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Server.Act4; +using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; +using NosSmooth.PacketSerializer.Extensions; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets;