M Samples/InterceptNameChanger/NameChangeInterceptor.cs => Samples/InterceptNameChanger/NameChangeInterceptor.cs +1 -1
@@ 9,7 9,7 @@ using NosSmooth.Core.Client;
using NosSmooth.LocalClient;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
namespace InterceptNameChanger
{
M Samples/InterceptNameChanger/NameChanger.cs => Samples/InterceptNameChanger/NameChanger.cs +1 -1
@@ 12,7 12,7 @@ using NosSmooth.LocalClient;
using NosSmooth.LocalClient.Extensions;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
namespace InterceptNameChanger
{
M Samples/SimpleChat/SayResponder.cs => Samples/SimpleChat/SayResponder.cs +1 -1
@@ 8,7 8,7 @@ using NosSmooth.Core.Client;
using NosSmooth.Core.Packets;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
using Remora.Results;
namespace SimpleChat;
M Samples/SimpleChat/SimpleChat.cs => Samples/SimpleChat/SimpleChat.cs +1 -1
@@ 12,7 12,7 @@ using NosSmooth.LocalBinding;
using NosSmooth.LocalClient.Extensions;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
namespace SimpleChat;
M Samples/WalkCommands/ChatPacketInterceptor.cs => Samples/WalkCommands/ChatPacketInterceptor.cs +1 -3
@@ 6,14 6,12 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
-using Microsoft.Extensions.Options;
using NosSmooth.Core.Client;
-using NosSmooth.Core.Commands;
using NosSmooth.Core.Extensions;
using NosSmooth.LocalClient;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
using Remora.Results;
using WalkCommands.Commands;
M Samples/WalkCommands/Commands/DetachCommand.cs => Samples/WalkCommands/Commands/DetachCommand.cs +1 -1
@@ 7,7 7,7 @@
using NosSmooth.Core.Client;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
using Remora.Results;
namespace WalkCommands.Commands;
M Samples/WalkCommands/Commands/WalkCommands.cs => Samples/WalkCommands/Commands/WalkCommands.cs +1 -1
@@ 8,7 8,7 @@ using NosSmooth.Core.Client;
using NosSmooth.Core.Commands;
using NosSmooth.Packets.Enums;
using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
+using NosSmooth.Packets.Server.Chat;
using Remora.Results;
namespace WalkCommands.Commands;
M Samples/WalkCommands/Startup.cs => Samples/WalkCommands/Startup.cs +0 -3
@@ 10,9 10,6 @@ using NosSmooth.Core.Client;
using NosSmooth.LocalBinding;
using NosSmooth.LocalClient;
using NosSmooth.LocalClient.Extensions;
-using NosSmooth.Packets.Enums;
-using NosSmooth.Packets.Enums.Chat;
-using NosSmooth.Packets.Packets.Server.Chat;
using WalkCommands.Commands;
namespace WalkCommands;