diff --git a/VpSharp/src/Cell.cs b/VpSharp/src/Cell.cs index cec6f57..b0c65c4 100644 --- a/VpSharp/src/Cell.cs +++ b/VpSharp/src/Cell.cs @@ -1,4 +1,4 @@ -using System.Globalization; +using System.Globalization; using System.Numerics; using System.Text; @@ -150,4 +150,4 @@ public readonly struct Cell : IEquatable, IFormattable builder.Append('>'); return builder.ToString(); } -} \ No newline at end of file +} diff --git a/VpSharp/src/ColorF.cs b/VpSharp/src/ColorF.cs index 333ac95..f67ca3c 100644 --- a/VpSharp/src/ColorF.cs +++ b/VpSharp/src/ColorF.cs @@ -1,4 +1,4 @@ -using System.Drawing; +using System.Drawing; using VpSharp.Internal; namespace VpSharp; @@ -160,4 +160,4 @@ public readonly struct ColorF : IEquatable { return HashCode.Combine(A, R, G, B); } -} \ No newline at end of file +} diff --git a/VpSharp/src/ColorSpace.cs b/VpSharp/src/ColorSpace.cs index 94056cc..89c3d18 100644 --- a/VpSharp/src/ColorSpace.cs +++ b/VpSharp/src/ColorSpace.cs @@ -8,4 +8,4 @@ public enum ColorSpace Linear, // ReSharper disable once InconsistentNaming sRGB -} \ No newline at end of file +} diff --git a/VpSharp/src/DisconnectReason.cs b/VpSharp/src/DisconnectReason.cs index cabfc2c..4160bb1 100644 --- a/VpSharp/src/DisconnectReason.cs +++ b/VpSharp/src/DisconnectReason.cs @@ -9,9 +9,9 @@ public enum DisconnectReason /// Indicates that connection to the server was lost unexpectedly. /// ConnectionLost, - + /// /// Indicates that disconnection was requested and graceful. /// Disconnected -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/AvatarClickedEventArgs.cs b/VpSharp/src/EventData/AvatarClickedEventArgs.cs index c0b9296..ebf9e02 100644 --- a/VpSharp/src/EventData/AvatarClickedEventArgs.cs +++ b/VpSharp/src/EventData/AvatarClickedEventArgs.cs @@ -37,4 +37,4 @@ public sealed class AvatarClickedEventArgs : EventArgs /// /// The click point. public Vector3d ClickPoint { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/AvatarJoinedEventArgs.cs b/VpSharp/src/EventData/AvatarJoinedEventArgs.cs index a95367a..5dea39c 100644 --- a/VpSharp/src/EventData/AvatarJoinedEventArgs.cs +++ b/VpSharp/src/EventData/AvatarJoinedEventArgs.cs @@ -21,4 +21,4 @@ public sealed class AvatarJoinedEventArgs : EventArgs /// /// The newly-joined avatar. public VirtualParadiseAvatar Avatar { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/AvatarLeftEventArgs.cs b/VpSharp/src/EventData/AvatarLeftEventArgs.cs index eab6553..2c0b941 100644 --- a/VpSharp/src/EventData/AvatarLeftEventArgs.cs +++ b/VpSharp/src/EventData/AvatarLeftEventArgs.cs @@ -21,4 +21,4 @@ public sealed class AvatarLeftEventArgs : EventArgs /// /// The newly-departed avatar. public VirtualParadiseAvatar Avatar { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/AvatarMovedEventArgs.cs b/VpSharp/src/EventData/AvatarMovedEventArgs.cs index 129d1c3..6c85cb8 100644 --- a/VpSharp/src/EventData/AvatarMovedEventArgs.cs +++ b/VpSharp/src/EventData/AvatarMovedEventArgs.cs @@ -27,14 +27,14 @@ public sealed class AvatarMovedEventArgs : EventArgs public VirtualParadiseAvatar Avatar { get; } /// - /// Gets the avatar's location after the change. + /// Gets the avatar's location after the change. /// /// The avatar's new location. public Location LocationAfter { get; } /// - /// Gets the avatar's location before the change. + /// Gets the avatar's location before the change. /// /// The avatar's old location. public Location? LocationBefore { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/AvatarTypeChangedEventArgs.cs b/VpSharp/src/EventData/AvatarTypeChangedEventArgs.cs index ac09f56..ec58b3b 100644 --- a/VpSharp/src/EventData/AvatarTypeChangedEventArgs.cs +++ b/VpSharp/src/EventData/AvatarTypeChangedEventArgs.cs @@ -27,14 +27,14 @@ public sealed class AvatarTypeChangedEventArgs : EventArgs public VirtualParadiseAvatar Avatar { get; } /// - /// Gets the avatar's type after the change. + /// Gets the avatar's type after the change. /// /// The avatar's new type. public int TypeAfter { get; } /// - /// Gets the avatar's type before the change. + /// Gets the avatar's type before the change. /// /// The avatar's old type. public int? TypeBefore { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/DisconnectedEventArgs.cs b/VpSharp/src/EventData/DisconnectedEventArgs.cs index d93656f..cd07559 100644 --- a/VpSharp/src/EventData/DisconnectedEventArgs.cs +++ b/VpSharp/src/EventData/DisconnectedEventArgs.cs @@ -20,4 +20,4 @@ public sealed class DisconnectedEventArgs : EventArgs /// /// The reason for the disconnect. public DisconnectReason Reason { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/InviteRequestReceivedEventArgs.cs b/VpSharp/src/EventData/InviteRequestReceivedEventArgs.cs index b526488..ea7295e 100644 --- a/VpSharp/src/EventData/InviteRequestReceivedEventArgs.cs +++ b/VpSharp/src/EventData/InviteRequestReceivedEventArgs.cs @@ -19,4 +19,4 @@ public sealed class InviteRequestReceivedEventArgs : EventArgs /// /// The invite request. public InviteRequest InviteRequest { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/JoinRequestReceivedEventArgs.cs b/VpSharp/src/EventData/JoinRequestReceivedEventArgs.cs index ec278c3..f913028 100644 --- a/VpSharp/src/EventData/JoinRequestReceivedEventArgs.cs +++ b/VpSharp/src/EventData/JoinRequestReceivedEventArgs.cs @@ -19,4 +19,4 @@ public sealed class JoinRequestReceivedEventArgs : EventArgs /// /// The join request. public JoinRequest JoinRequest { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/MessageReceivedEventArgs.cs b/VpSharp/src/EventData/MessageReceivedEventArgs.cs index d3edb34..f9d4035 100644 --- a/VpSharp/src/EventData/MessageReceivedEventArgs.cs +++ b/VpSharp/src/EventData/MessageReceivedEventArgs.cs @@ -21,4 +21,4 @@ public sealed class MessageReceivedEventArgs : EventArgs /// /// The message. public VirtualParadiseMessage Message { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/ObjectBumpEventArgs.cs b/VpSharp/src/EventData/ObjectBumpEventArgs.cs index c9358bc..5bcae51 100644 --- a/VpSharp/src/EventData/ObjectBumpEventArgs.cs +++ b/VpSharp/src/EventData/ObjectBumpEventArgs.cs @@ -37,4 +37,4 @@ public sealed class ObjectBumpEventArgs : EventArgs /// /// The bump phase. public BumpPhase Phase { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/ObjectChangedEventArgs.cs b/VpSharp/src/EventData/ObjectChangedEventArgs.cs index e2a2cb6..b54663c 100644 --- a/VpSharp/src/EventData/ObjectChangedEventArgs.cs +++ b/VpSharp/src/EventData/ObjectChangedEventArgs.cs @@ -44,4 +44,4 @@ public sealed class ObjectChangedEventArgs : EventArgs /// previously have the object cached. /// public VirtualParadiseObject ObjectBefore { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/ObjectClickedEventArgs.cs b/VpSharp/src/EventData/ObjectClickedEventArgs.cs index 6c38759..cc51513 100644 --- a/VpSharp/src/EventData/ObjectClickedEventArgs.cs +++ b/VpSharp/src/EventData/ObjectClickedEventArgs.cs @@ -40,4 +40,4 @@ public sealed class ObjectClickedEventArgs : EventArgs /// /// The clicked object. public VirtualParadiseObject Object { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/ObjectCreatedEventArgs.cs b/VpSharp/src/EventData/ObjectCreatedEventArgs.cs index 4bfd37a..337105d 100644 --- a/VpSharp/src/EventData/ObjectCreatedEventArgs.cs +++ b/VpSharp/src/EventData/ObjectCreatedEventArgs.cs @@ -29,4 +29,4 @@ public sealed class ObjectCreatedEventArgs : EventArgs /// /// The object which was created. public VirtualParadiseObject Object { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/ObjectDeletedEventArgs.cs b/VpSharp/src/EventData/ObjectDeletedEventArgs.cs index 35e97d4..1300958 100644 --- a/VpSharp/src/EventData/ObjectDeletedEventArgs.cs +++ b/VpSharp/src/EventData/ObjectDeletedEventArgs.cs @@ -46,4 +46,4 @@ public sealed class ObjectDeletedEventArgs : EventArgs /// /// public int ObjectId { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/TeleportedEventArgs.cs b/VpSharp/src/EventData/TeleportedEventArgs.cs index 76b9162..e42be54 100644 --- a/VpSharp/src/EventData/TeleportedEventArgs.cs +++ b/VpSharp/src/EventData/TeleportedEventArgs.cs @@ -29,4 +29,4 @@ public sealed class TeleportedEventArgs : EventArgs /// /// The target location of the teleport. public Location Location { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/EventData/UriReceivedEventArgs.cs b/VpSharp/src/EventData/UriReceivedEventArgs.cs index 87b276b..6d4995b 100644 --- a/VpSharp/src/EventData/UriReceivedEventArgs.cs +++ b/VpSharp/src/EventData/UriReceivedEventArgs.cs @@ -37,4 +37,4 @@ public sealed class UriReceivedEventArgs : EventArgs /// /// The received URI. public Uri Uri { get; } -} \ No newline at end of file +} diff --git a/VpSharp/src/Exceptions/VersionMismatchException.cs b/VpSharp/src/Exceptions/VersionMismatchException.cs index 91df8d4..583340b 100644 --- a/VpSharp/src/Exceptions/VersionMismatchException.cs +++ b/VpSharp/src/Exceptions/VersionMismatchException.cs @@ -22,4 +22,4 @@ public sealed class VersionMismatchException : Exception : base(message, innerException) { } -} \ No newline at end of file +} diff --git a/VpSharp/src/Extensions/ColorExtensions.cs b/VpSharp/src/Extensions/ColorExtensions.cs index 615e162..4edb4fc 100644 --- a/VpSharp/src/Extensions/ColorExtensions.cs +++ b/VpSharp/src/Extensions/ColorExtensions.cs @@ -31,4 +31,4 @@ internal static class ColorExtensions (r, g, b) = color; a = color.A; } -} \ No newline at end of file +} diff --git a/VpSharp/src/Extensions/SpanExtensions.cs b/VpSharp/src/Extensions/SpanExtensions.cs index 05971ef..04e94ca 100644 --- a/VpSharp/src/Extensions/SpanExtensions.cs +++ b/VpSharp/src/Extensions/SpanExtensions.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using System.Text; using Cysharp.Text; @@ -246,4 +246,4 @@ internal static class SpanExtensions return new Vector4(x, y, z, w); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Extensions/VectorExtensions.cs b/VpSharp/src/Extensions/VectorExtensions.cs index ccbc6bf..c2b07bd 100644 --- a/VpSharp/src/Extensions/VectorExtensions.cs +++ b/VpSharp/src/Extensions/VectorExtensions.cs @@ -33,4 +33,4 @@ public static class VectorExtensions z = vector.Z; w = vector.W; } -} \ No newline at end of file +} diff --git a/VpSharp/src/FogMode.cs b/VpSharp/src/FogMode.cs index 7e40541..49b9de7 100644 --- a/VpSharp/src/FogMode.cs +++ b/VpSharp/src/FogMode.cs @@ -11,4 +11,4 @@ public enum FogMode Exponential = Exp, Exp2, Exponential2 = Exp2 -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/Native.cs b/VpSharp/src/Internal/Native.cs index 3030e60..f4238a0 100644 --- a/VpSharp/src/Internal/Native.cs +++ b/VpSharp/src/Internal/Native.cs @@ -240,4 +240,4 @@ internal static class Native [DllImport(VpSdkLibrary, CallingConvention = CallingConvention.Cdecl)] public static extern int vp_net_notify(nint vpConnection, int type, int status); -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/NativeAttributes/FloatAttribute.cs b/VpSharp/src/Internal/NativeAttributes/FloatAttribute.cs index c535fa3..4c78147 100644 --- a/VpSharp/src/Internal/NativeAttributes/FloatAttribute.cs +++ b/VpSharp/src/Internal/NativeAttributes/FloatAttribute.cs @@ -40,4 +40,4 @@ internal enum FloatAttribute InviteZ, InviteYaw, InvitePitch -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/NativeAttributes/IntegerAttribute.cs b/VpSharp/src/Internal/NativeAttributes/IntegerAttribute.cs index 4710858..d3eb40d 100644 --- a/VpSharp/src/Internal/NativeAttributes/IntegerAttribute.cs +++ b/VpSharp/src/Internal/NativeAttributes/IntegerAttribute.cs @@ -46,4 +46,4 @@ internal enum IntegerAttribute InviteId, InviteUserId, WorldSize -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/NativeAttributes/StringAttribute.cs b/VpSharp/src/Internal/NativeAttributes/StringAttribute.cs index f09a8b6..59cc354 100644 --- a/VpSharp/src/Internal/NativeAttributes/StringAttribute.cs +++ b/VpSharp/src/Internal/NativeAttributes/StringAttribute.cs @@ -25,4 +25,4 @@ internal enum StringAttribute ApplicationVersion, AvatarApplicationName, AvatarApplicationVersion -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/NativeCallbackHandler.cs b/VpSharp/src/Internal/NativeCallbackHandler.cs index d35b184..f5d2c9e 100644 --- a/VpSharp/src/Internal/NativeCallbackHandler.cs +++ b/VpSharp/src/Internal/NativeCallbackHandler.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate void NativeCallbackHandler(nint sender, [MarshalAs(UnmanagedType.I4)] ReasonCode reason, int reference); \ No newline at end of file +internal delegate void NativeCallbackHandler(nint sender, [MarshalAs(UnmanagedType.I4)] ReasonCode reason, int reference); diff --git a/VpSharp/src/Internal/NativeEvent.cs b/VpSharp/src/Internal/NativeEvent.cs index 43687d4..e98e467 100644 --- a/VpSharp/src/Internal/NativeEvent.cs +++ b/VpSharp/src/Internal/NativeEvent.cs @@ -27,4 +27,4 @@ internal enum NativeEvent TerrainNodeChanged, Join, Invite -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/NativeEventHandler.cs b/VpSharp/src/Internal/NativeEventHandler.cs index f90c00f..a137b01 100644 --- a/VpSharp/src/Internal/NativeEventHandler.cs +++ b/VpSharp/src/Internal/NativeEventHandler.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate void NativeEventHandler(nint sender); \ No newline at end of file +internal delegate void NativeEventHandler(nint sender); diff --git a/VpSharp/src/Internal/SocketCreateFunction.cs b/VpSharp/src/Internal/SocketCreateFunction.cs index dca0b20..78c12a4 100644 --- a/VpSharp/src/Internal/SocketCreateFunction.cs +++ b/VpSharp/src/Internal/SocketCreateFunction.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate nint SocketCreateFunction(nint connection, nint context); \ No newline at end of file +internal delegate nint SocketCreateFunction(nint connection, nint context); diff --git a/VpSharp/src/Internal/SocketDestroyFunction.cs b/VpSharp/src/Internal/SocketDestroyFunction.cs index d517eb9..73328ba 100644 --- a/VpSharp/src/Internal/SocketDestroyFunction.cs +++ b/VpSharp/src/Internal/SocketDestroyFunction.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate void SocketDestroyFunction(nint socket); \ No newline at end of file +internal delegate void SocketDestroyFunction(nint socket); diff --git a/VpSharp/src/Internal/SocketReceiveFunction.cs b/VpSharp/src/Internal/SocketReceiveFunction.cs index 260a52c..2a3207d 100644 --- a/VpSharp/src/Internal/SocketReceiveFunction.cs +++ b/VpSharp/src/Internal/SocketReceiveFunction.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate int SocketReceiveFunction(nint socket, nint data, uint length); \ No newline at end of file +internal delegate int SocketReceiveFunction(nint socket, nint data, uint length); diff --git a/VpSharp/src/Internal/SocketSendFunction.cs b/VpSharp/src/Internal/SocketSendFunction.cs index c3d81e8..bbe91a1 100644 --- a/VpSharp/src/Internal/SocketSendFunction.cs +++ b/VpSharp/src/Internal/SocketSendFunction.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate int SocketSendFunction(nint socket, nint data, uint length); \ No newline at end of file +internal delegate int SocketSendFunction(nint socket, nint data, uint length); diff --git a/VpSharp/src/Internal/SocketTimeoutFunction.cs b/VpSharp/src/Internal/SocketTimeoutFunction.cs index dac2a02..aaf90fd 100644 --- a/VpSharp/src/Internal/SocketTimeoutFunction.cs +++ b/VpSharp/src/Internal/SocketTimeoutFunction.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate int SocketTimeoutFunction(nint socket, int seconds); \ No newline at end of file +internal delegate int SocketTimeoutFunction(nint socket, int seconds); diff --git a/VpSharp/src/Internal/SocketWaitFunction.cs b/VpSharp/src/Internal/SocketWaitFunction.cs index 16d7023..8690330 100644 --- a/VpSharp/src/Internal/SocketWaitFunction.cs +++ b/VpSharp/src/Internal/SocketWaitFunction.cs @@ -3,4 +3,4 @@ namespace VpSharp.Internal; [UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate int SocketWaitFunction(nint context, int duration); \ No newline at end of file +internal delegate int SocketWaitFunction(nint context, int duration); diff --git a/VpSharp/src/Internal/Utf8StringToNative.cs b/VpSharp/src/Internal/Utf8StringToNative.cs index e279681..9925c14 100644 --- a/VpSharp/src/Internal/Utf8StringToNative.cs +++ b/VpSharp/src/Internal/Utf8StringToNative.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; using System.Text; namespace VpSharp.Internal; @@ -39,4 +39,4 @@ internal sealed class Utf8StringToNative : ICustomMarshaler { throw new NotImplementedException(); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/HexToColorConverter.cs b/VpSharp/src/Internal/ValueConverters/HexToColorConverter.cs index dc70a96..cd5ffea 100644 --- a/VpSharp/src/Internal/ValueConverters/HexToColorConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/HexToColorConverter.cs @@ -27,4 +27,4 @@ internal sealed class HexToColorConverter : ValueConverter { writer.Write($"{value.R:X2}{value.G:X2}{value.B:X2}"); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/IntToBoolConverter.cs b/VpSharp/src/Internal/ValueConverters/IntToBoolConverter.cs index 6d7977c..1c5224f 100644 --- a/VpSharp/src/Internal/ValueConverters/IntToBoolConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/IntToBoolConverter.cs @@ -24,4 +24,4 @@ internal sealed class IntToBoolConverter : ValueConverter { writer.Write(value ? 1 : 0); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/IntToEnumConverter.cs b/VpSharp/src/Internal/ValueConverters/IntToEnumConverter.cs index 6b7e0c2..c8e6ed2 100644 --- a/VpSharp/src/Internal/ValueConverters/IntToEnumConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/IntToEnumConverter.cs @@ -15,4 +15,4 @@ internal sealed class IntToEnumConverter : ValueConverter { writer.Write(Convert.ToInt32(value)); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/MillisecondToTimeSpanConverter.cs b/VpSharp/src/Internal/ValueConverters/MillisecondToTimeSpanConverter.cs index f5d67fb..2f9d9d8 100644 --- a/VpSharp/src/Internal/ValueConverters/MillisecondToTimeSpanConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/MillisecondToTimeSpanConverter.cs @@ -24,4 +24,4 @@ internal sealed class MillisecondToTimeSpanConverter : ValueConverter { writer.Write(value.TotalMilliseconds); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/StringToEnumConverter.cs b/VpSharp/src/Internal/ValueConverters/StringToEnumConverter.cs index 0293cfa..978d968 100644 --- a/VpSharp/src/Internal/ValueConverters/StringToEnumConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/StringToEnumConverter.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using VpSharp.Internal.Attributes; namespace VpSharp.Internal.ValueConverters; @@ -27,4 +27,4 @@ internal sealed class StringToEnumConverter : ValueConverter { writer.Write(value.ToString().ToLowerInvariant()); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/UriConverter.cs b/VpSharp/src/Internal/ValueConverters/UriConverter.cs index 9814f0a..0e6c3ba 100644 --- a/VpSharp/src/Internal/ValueConverters/UriConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/UriConverter.cs @@ -17,4 +17,4 @@ internal sealed class UriConverter : ValueConverter writer.Write(value.ToString()); } } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/ValueConverter.cs b/VpSharp/src/Internal/ValueConverters/ValueConverter.cs index 1bc3adb..fa4a564 100644 --- a/VpSharp/src/Internal/ValueConverters/ValueConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/ValueConverter.cs @@ -1,4 +1,4 @@ -namespace VpSharp.Internal.ValueConverters; +namespace VpSharp.Internal.ValueConverters; [Obsolete] internal abstract class ValueConverter @@ -28,4 +28,4 @@ internal abstract class ValueConverter : ValueConverter public abstract void Deserialize(TextReader reader, out T result); public abstract void Serialize(TextWriter writer, T value); -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/Vector2Converter.cs b/VpSharp/src/Internal/ValueConverters/Vector2Converter.cs index 4c2bad0..7642b98 100644 --- a/VpSharp/src/Internal/ValueConverters/Vector2Converter.cs +++ b/VpSharp/src/Internal/ValueConverters/Vector2Converter.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Cysharp.Text; using VpSharp.Extensions; @@ -37,4 +37,4 @@ internal sealed class Vector2Converter : ValueConverter { writer.Write($"{value.X} {value.Y}"); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/Vector3Converter.cs b/VpSharp/src/Internal/ValueConverters/Vector3Converter.cs index cbd8166..4065428 100644 --- a/VpSharp/src/Internal/ValueConverters/Vector3Converter.cs +++ b/VpSharp/src/Internal/ValueConverters/Vector3Converter.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Cysharp.Text; using VpSharp.Extensions; @@ -37,4 +37,4 @@ internal sealed class Vector3Converter : ValueConverter { writer.Write($"{value.X} {value.Y} {value.Z}"); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/Vector3ToColorConverter.cs b/VpSharp/src/Internal/ValueConverters/Vector3ToColorConverter.cs index cdbc4f8..cd2332d 100644 --- a/VpSharp/src/Internal/ValueConverters/Vector3ToColorConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/Vector3ToColorConverter.cs @@ -1,4 +1,4 @@ -using Cysharp.Text; +using Cysharp.Text; using VpSharp.Extensions; namespace VpSharp.Internal.ValueConverters; @@ -37,4 +37,4 @@ internal sealed class Vector3ToColorConverter : ValueConverter { writer.Write($"{value.R} {value.G} {value.B} {value.A}"); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/Vector3dConverter.cs b/VpSharp/src/Internal/ValueConverters/Vector3dConverter.cs index 9e87843..8b02f0a 100644 --- a/VpSharp/src/Internal/ValueConverters/Vector3dConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/Vector3dConverter.cs @@ -1,4 +1,4 @@ -using Cysharp.Text; +using Cysharp.Text; using VpSharp.Extensions; namespace VpSharp.Internal.ValueConverters; @@ -36,4 +36,4 @@ internal sealed class Vector3dConverter : ValueConverter { writer.Write($"{value.X} {value.Y} {value.Z}"); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/Vector4ToColorConverter.cs b/VpSharp/src/Internal/ValueConverters/Vector4ToColorConverter.cs index 2334df4..998b0e3 100644 --- a/VpSharp/src/Internal/ValueConverters/Vector4ToColorConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/Vector4ToColorConverter.cs @@ -1,4 +1,4 @@ -using Cysharp.Text; +using Cysharp.Text; using VpSharp.Extensions; namespace VpSharp.Internal.ValueConverters; @@ -37,4 +37,4 @@ internal sealed class Vector4ToColorConverter : ValueConverter { writer.Write($"{value.R} {value.G} {value.B} {value.A}"); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/Vector4ToVector3Converter.cs b/VpSharp/src/Internal/ValueConverters/Vector4ToVector3Converter.cs index 039c1be..1b18643 100644 --- a/VpSharp/src/Internal/ValueConverters/Vector4ToVector3Converter.cs +++ b/VpSharp/src/Internal/ValueConverters/Vector4ToVector3Converter.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Cysharp.Text; using VpSharp.Extensions; @@ -42,4 +42,4 @@ internal sealed class Vector4ToVector3Converter : ValueConverter writer.Write(value.Z); writer.Flush(); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/VectorToNthComponentConverter.cs b/VpSharp/src/Internal/ValueConverters/VectorToNthComponentConverter.cs index 17a0619..05d29b7 100644 --- a/VpSharp/src/Internal/ValueConverters/VectorToNthComponentConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/VectorToNthComponentConverter.cs @@ -1,4 +1,4 @@ -using Cysharp.Text; +using Cysharp.Text; using VpSharp.Extensions; namespace VpSharp.Internal.ValueConverters; @@ -47,4 +47,4 @@ internal sealed class VectorToNthComponentConverter : ValueConverter { writer.Write(value); } -} \ No newline at end of file +} diff --git a/VpSharp/src/Internal/ValueConverters/WorldSettingsConverter.cs b/VpSharp/src/Internal/ValueConverters/WorldSettingsConverter.cs index b7a0264..f05af81 100644 --- a/VpSharp/src/Internal/ValueConverters/WorldSettingsConverter.cs +++ b/VpSharp/src/Internal/ValueConverters/WorldSettingsConverter.cs @@ -1,4 +1,4 @@ -using System.ComponentModel; +using System.ComponentModel; using System.Reflection; using VpSharp.Internal.Attributes; @@ -156,4 +156,4 @@ internal static class WorldSettingsConverter return settings; } -} \ No newline at end of file +} diff --git a/VpSharp/src/InviteRequest.cs b/VpSharp/src/InviteRequest.cs index 2c4e28d..9de44ae 100644 --- a/VpSharp/src/InviteRequest.cs +++ b/VpSharp/src/InviteRequest.cs @@ -1,4 +1,4 @@ -using VpSharp.Entities; +using VpSharp.Entities; using VpSharp.Internal; namespace VpSharp; @@ -110,4 +110,4 @@ public sealed class InviteRequest : IEquatable public static bool operator ==(InviteRequest left, InviteRequest right) => Equals(left, right); public static bool operator !=(InviteRequest left, InviteRequest right) => !Equals(left, right); -} \ No newline at end of file +} diff --git a/VpSharp/src/InviteResponse.cs b/VpSharp/src/InviteResponse.cs index 0085f1a..6b70169 100644 --- a/VpSharp/src/InviteResponse.cs +++ b/VpSharp/src/InviteResponse.cs @@ -19,4 +19,4 @@ public enum InviteResponse /// The invite request timed out. /// TimeOut -} \ No newline at end of file +} diff --git a/VpSharp/src/JoinResponse.cs b/VpSharp/src/JoinResponse.cs index c1c4baa..7d23f91 100644 --- a/VpSharp/src/JoinResponse.cs +++ b/VpSharp/src/JoinResponse.cs @@ -19,4 +19,4 @@ public enum JoinResponse /// The join request timed out. /// TimeOut -} \ No newline at end of file +} diff --git a/VpSharp/src/JoinResult.cs b/VpSharp/src/JoinResult.cs index 13aaed1..a7acce1 100644 --- a/VpSharp/src/JoinResult.cs +++ b/VpSharp/src/JoinResult.cs @@ -27,4 +27,4 @@ public readonly struct JoinResult { return result.Response == JoinResponse.Accepted; } -} \ No newline at end of file +} diff --git a/VpSharp/src/NativeApi/NetworkReturnCode.cs b/VpSharp/src/NativeApi/NetworkReturnCode.cs index cb4abce..9dacfcc 100644 --- a/VpSharp/src/NativeApi/NetworkReturnCode.cs +++ b/VpSharp/src/NativeApi/NetworkReturnCode.cs @@ -5,4 +5,4 @@ internal enum NetworkReturnCode Success = 0, ConnectionError = -1, WouldBlock = -2 -} \ No newline at end of file +} diff --git a/VpSharp/src/NativeApi/ProxyType.cs b/VpSharp/src/NativeApi/ProxyType.cs index 8a11b02..b78a883 100644 --- a/VpSharp/src/NativeApi/ProxyType.cs +++ b/VpSharp/src/NativeApi/ProxyType.cs @@ -11,4 +11,4 @@ internal enum ProxyType /// Connection uses socks 4A. /// ProxySocks4A -} \ No newline at end of file +} diff --git a/VpSharp/src/WorldSettingsBuilder.cs b/VpSharp/src/WorldSettingsBuilder.cs index c66d518..b48034e 100644 --- a/VpSharp/src/WorldSettingsBuilder.cs +++ b/VpSharp/src/WorldSettingsBuilder.cs @@ -1,4 +1,4 @@ -using System.Drawing; +using System.Drawing; using System.Numerics; using VpSharp.Internal; using VpSharp.Internal.Attributes; @@ -401,4 +401,4 @@ public sealed class WorldSettingsBuilder } } } -} \ No newline at end of file +}