diff --git a/VpSharp.Commands/CommandsExtension.cs b/VpSharp.Commands/CommandsExtension.cs index 62d46e6..e854bd3 100644 --- a/VpSharp.Commands/CommandsExtension.cs +++ b/VpSharp.Commands/CommandsExtension.cs @@ -1,11 +1,9 @@ using System.Globalization; using System.Reflection; -using Microsoft.Extensions.DependencyInjection; using VpSharp.ClientExtensions; using VpSharp.Commands.Attributes; using VpSharp.Commands.Attributes.ExecutionChecks; using VpSharp.Entities; -using VpSharp.EventData; using VpSharp.Internal; namespace VpSharp.Commands; diff --git a/VpSharp.IntegrationTests/src/Program.cs b/VpSharp.IntegrationTests/src/Program.cs index 1c26974..a7a9d7b 100644 --- a/VpSharp.IntegrationTests/src/Program.cs +++ b/VpSharp.IntegrationTests/src/Program.cs @@ -1,6 +1,7 @@ using VpSharp; using VpSharp.Commands; using VpSharp.Entities; +using VpSharp.Extensions; using VpSharp.IntegrationTests.CommandModules; string? username = Environment.GetEnvironmentVariable("username"); diff --git a/VpSharp/src/Vector3d.cs b/VpSharp/src/Vector3d.cs index 703cca4..ed8bdf4 100644 --- a/VpSharp/src/Vector3d.cs +++ b/VpSharp/src/Vector3d.cs @@ -1,7 +1,5 @@ using System.Globalization; using System.Numerics; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; using System.Text; namespace VpSharp;