1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00

Changed all namespaces to file-scope

This commit is contained in:
Darth Affe 2021-11-13 17:35:08 +01:00
parent a0c6ccebea
commit 30624035f1
353 changed files with 35775 additions and 36129 deletions

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents the default-behavior for the work with colors. /// Represents the default-behavior for the work with colors.
@ -58,4 +58,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a behavior of a color for base operations. /// Represents a behavior of a color for base operations.
/// </summary> /// </summary>
@ -33,4 +33,3 @@
/// <param name="blendColor">The <see cref="Color"/> to blend.</param> /// <param name="blendColor">The <see cref="Color"/> to blend.</param>
Color Blend(in Color baseColor, in Color blendColor); Color Blend(in Color baseColor, in Color blendColor);
} }
}

View File

@ -5,8 +5,8 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents an ARGB (alpha, red, green, blue) color. /// Represents an ARGB (alpha, red, green, blue) color.
/// </summary> /// </summary>
@ -281,4 +281,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the HSV color space. /// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the HSV color space.
/// </summary> /// </summary>
@ -226,4 +226,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the Hcl color space. /// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the Hcl color space.
/// </summary> /// </summary>
@ -209,4 +209,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the Lab color space. /// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the Lab color space.
/// </summary> /// </summary>
@ -225,4 +225,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the RGB color space. /// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the RGB color space.
/// </summary> /// </summary>
@ -293,4 +293,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the XYZ color space. /// Contains helper-methods and extension for the <see cref="Color"/>-type to work in the XYZ color space.
/// </summary> /// </summary>
@ -205,4 +205,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic color-correction. /// Represents a generic color-correction.
/// </summary> /// </summary>
@ -13,4 +13,3 @@ namespace RGB.NET.Core
/// <param name="color">The <see cref="Color"/> to correct.</param> /// <param name="color">The <see cref="Color"/> to correct.</param>
void ApplyTo(ref Color color); void ApplyTo(ref Color color);
} }
}

View File

@ -2,8 +2,8 @@
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="AbstractBindable" /> /// <inheritdoc cref="AbstractBindable" />
/// <inheritdoc cref="IDecoratable{T}" /> /// <inheritdoc cref="IDecoratable{T}" />
public abstract class AbstractDecoratable<T> : AbstractBindable, IDecoratable<T> public abstract class AbstractDecoratable<T> : AbstractBindable, IDecoratable<T>
@ -67,4 +67,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="AbstractBindable" /> /// <inheritdoc cref="AbstractBindable" />
/// <inheritdoc cref="IDecorator" /> /// <inheritdoc cref="IDecorator" />
public abstract class AbstractDecorator : AbstractBindable, IDecorator public abstract class AbstractDecorator : AbstractBindable, IDecorator
@ -59,4 +59,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a basic decorator which is aware of the <see cref="E:RGB.NET.Core.RGBSurface.Updating" /> event. /// Represents a basic decorator which is aware of the <see cref="E:RGB.NET.Core.RGBSurface.Updating" /> event.
@ -69,4 +69,3 @@
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a <see cref="T:RGB.NET.Core.IDecorator" /> decorating a <see cref="T:RGB.NET.Core.IBrush" />. /// Represents a <see cref="T:RGB.NET.Core.IDecorator" /> decorating a <see cref="T:RGB.NET.Core.IBrush" />.
@ -14,4 +14,3 @@
/// <param name="color">The <see cref="Color"/> to be modified.</param> /// <param name="color">The <see cref="Color"/> to be modified.</param>
void ManipulateColor(in Rectangle rectangle, in RenderTarget renderTarget, ref Color color); void ManipulateColor(in Rectangle rectangle, in RenderTarget renderTarget, ref Color color);
} }
}

View File

@ -1,8 +1,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a basic decoratable. /// Represents a basic decoratable.
/// </summary> /// </summary>
@ -39,4 +39,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
void RemoveAllDecorators(); void RemoveAllDecorators();
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a basic decorator. /// Represents a basic decorator.
/// </summary> /// </summary>
@ -36,4 +36,3 @@
#endregion #endregion
} }
}

View File

@ -1,9 +1,8 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a basic decorator decorating a <see cref="T:RGB.NET.Core.ILedGroup" />. /// Represents a basic decorator decorating a <see cref="T:RGB.NET.Core.ILedGroup" />.
/// </summary> /// </summary>
public interface ILedGroupDecorator : IDecorator public interface ILedGroupDecorator : IDecorator
{ } { }
}

View File

@ -6,8 +6,8 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="AbstractBindable" /> /// <inheritdoc cref="AbstractBindable" />
/// <inheritdoc cref="IRGBDevice{TDeviceInfo}" /> /// <inheritdoc cref="IRGBDevice{TDeviceInfo}" />
/// <summary> /// <summary>
@ -236,4 +236,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@ using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents the abstract base implementation for a <see cref="IRGBDeviceProvider"/>. /// Represents the abstract base implementation for a <see cref="IRGBDeviceProvider"/>.
/// </summary> /// </summary>
@ -204,4 +204,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="IEnumerable{Led}" /> /// <inheritdoc cref="IEnumerable{Led}" />
/// <inheritdoc cref="IBindable" /> /// <inheritdoc cref="IBindable" />
/// <inheritdoc cref="IDisposable" /> /// <inheritdoc cref="IDisposable" />
@ -96,4 +96,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
new TDeviceInfo DeviceInfo { get; } new TDeviceInfo DeviceInfo { get; }
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic information for a <see cref="IRGBDevice"/> /// Represents a generic information for a <see cref="IRGBDevice"/>
/// </summary> /// </summary>
@ -34,4 +34,3 @@
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic device provider. /// Represents a generic device provider.
/// </summary> /// </summary>
@ -55,4 +55,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
// ReSharper disable InconsistentNaming // ReSharper disable InconsistentNaming
#pragma warning disable 1591 #pragma warning disable 1591
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains a list of available keyboard layout types. /// Contains a list of available keyboard layout types.
/// </summary> /// </summary>
@ -15,4 +15,3 @@ namespace RGB.NET.Core
ABNT = 4, ABNT = 4,
KS = 5 KS = 5
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains a list of different types of device. /// Contains a list of different types of device.
/// </summary> /// </summary>
@ -98,4 +98,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
All = ~None All = ~None
} }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a cooler-device /// Represents a cooler-device
/// </summary> /// </summary>
public interface ICooler : IRGBDevice public interface ICooler : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a DRAM-device /// Represents a DRAM-device
/// </summary> /// </summary>
public interface IDRAM : IRGBDevice public interface IDRAM : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// represents a fan-device /// represents a fan-device
/// </summary> /// </summary>
public interface IFan : IRGBDevice public interface IFan : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a graphics-card-device /// Represents a graphics-card-device
/// </summary> /// </summary>
public interface IGraphicsCard : IRGBDevice public interface IGraphicsCard : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a headset-device /// Represents a headset-device
/// </summary> /// </summary>
public interface IHeadset : IRGBDevice public interface IHeadset : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a headset-stand-device /// Represents a headset-stand-device
/// </summary> /// </summary>
public interface IHeadsetStand : IRGBDevice public interface IHeadsetStand : IRGBDevice
{ } { }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic keyboard-device. /// Represents a generic keyboard-device.
/// </summary> /// </summary>
@ -21,4 +21,3 @@
/// </summary> /// </summary>
KeyboardLayoutType Layout { get; } KeyboardLayoutType Layout { get; }
} }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a keypad-device /// Represents a keypad-device
/// </summary> /// </summary>
public interface IKeypad : IRGBDevice public interface IKeypad : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a led-matrix-device /// Represents a led-matrix-device
/// </summary> /// </summary>
public interface ILedMatrix : IRGBDevice public interface ILedMatrix : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a led-stripe-device /// Represents a led-stripe-device
/// </summary> /// </summary>
public interface ILedStripe : IRGBDevice public interface ILedStripe : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a mainboard-device /// Represents a mainboard-device
/// </summary> /// </summary>
public interface IMainboard : IRGBDevice public interface IMainboard : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a mouse-device /// Represents a mouse-device
/// </summary> /// </summary>
public interface IMouse : IRGBDevice public interface IMouse : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a mousepad-device /// Represents a mousepad-device
/// </summary> /// </summary>
public interface IMousepad : IRGBDevice public interface IMousepad : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a speaker-device /// Represents a speaker-device
/// </summary> /// </summary>
public interface ISpeaker : IRGBDevice public interface ISpeaker : IRGBDevice
{ } { }
}

View File

@ -1,8 +1,7 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a device with unkown or not specified type. /// Represents a device with unkown or not specified type.
/// </summary> /// </summary>
public interface IUnknownDevice : IRGBDevice public interface IUnknownDevice : IRGBDevice
{ } { }
}

View File

@ -3,8 +3,8 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.Exception" />-event. /// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.Exception" />-event.
@ -48,4 +48,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.SurfaceLayoutChanged" />-event. /// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.SurfaceLayoutChanged" />-event.
@ -64,4 +64,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,11 +1,10 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.Updated" />-event. /// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.Updated" />-event.
/// </summary> /// </summary>
public class UpdatedEventArgs : EventArgs public class UpdatedEventArgs : EventArgs
{ } { }
}

View File

@ -3,8 +3,8 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.Updating" />-event. /// Represents the information supplied with an <see cref="E:RGB.NET.Core.RGBSurface.Updating" />-event.
@ -48,4 +48,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents an exception thrown by a <see cref="IRGBDeviceProvider" />. /// Represents an exception thrown by a <see cref="IRGBDeviceProvider" />.
@ -32,4 +32,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents an exception thrown by an <see cref="T:RGB.NET.Core.IRGBDevice" />. /// Represents an exception thrown by an <see cref="T:RGB.NET.Core.IRGBDevice" />.
@ -22,4 +22,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents an exception thrown by an <see cref="T:RGB.NET.Core.RGBSurface" />. /// Represents an exception thrown by an <see cref="T:RGB.NET.Core.RGBSurface" />.
@ -22,4 +22,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some extensions and helper-methods for <see cref="Color"/> related things. /// Offers some extensions and helper-methods for <see cref="Color"/> related things.
/// </summary> /// </summary>
@ -30,4 +30,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
using System; using System;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some extensions and helper-methods for the work with floats. /// Offers some extensions and helper-methods for the work with floats.
/// </summary> /// </summary>
@ -108,4 +108,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some extensions and helper-methods for <see cref="Point"/> related things. /// Offers some extensions and helper-methods for <see cref="Point"/> related things.
/// </summary> /// </summary>
@ -41,4 +41,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some extensions and helper-methods for the work with rectangles. /// Offers some extensions and helper-methods for the work with rectangles.
/// </summary> /// </summary>
@ -174,4 +174,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some extensions and helper-methods for the work with the surface. /// Offers some extensions and helper-methods for the work with the surface.
/// </summary> /// </summary>
@ -82,4 +82,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="AbstractDecoratable{T}" /> /// <inheritdoc cref="AbstractDecoratable{T}" />
/// <inheritdoc cref="ILedGroup" /> /// <inheritdoc cref="ILedGroup" />
/// <summary> /// <summary>
@ -59,4 +59,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic ledgroup. /// Represents a generic ledgroup.
/// </summary> /// </summary>
@ -40,4 +40,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
void OnDetach(); void OnDetach();
} }
}

View File

@ -1,8 +1,8 @@
// ReSharper disable MemberCanBePrivate.Global // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some extensions and helper-methods for <see cref="ILedGroup"/> related things. /// Offers some extensions and helper-methods for <see cref="ILedGroup"/> related things.
/// </summary> /// </summary>
@ -55,4 +55,3 @@ namespace RGB.NET.Core
/// <returns><c>true</c> if the <see cref="ILedGroup"/> could be detached; otherwise, <c>false</c>.</returns> /// <returns><c>true</c> if the <see cref="ILedGroup"/> could be detached; otherwise, <c>false</c>.</returns>
public static bool Detach(this ILedGroup ledGroup) => ledGroup.Surface?.Detach(ledGroup) ?? false; public static bool Detach(this ILedGroup ledGroup) => ledGroup.Surface?.Detach(ledGroup) ?? false;
} }
}

View File

@ -3,8 +3,8 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a ledgroup containing arbitrary <see cref="T:RGB.NET.Core.Led" />. /// Represents a ledgroup containing arbitrary <see cref="T:RGB.NET.Core.Led" />.
@ -130,4 +130,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains helper methods for converting things. /// Contains helper methods for converting things.
/// </summary> /// </summary>
@ -59,4 +59,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offsers some helper methods for device creation. /// Offsers some helper methods for device creation.
/// </summary> /// </summary>
@ -24,4 +24,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Offers some methods to create and handle unique identifiers. /// Offers some methods to create and handle unique identifiers.
/// </summary> /// </summary>
@ -72,4 +72,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -2,8 +2,8 @@
using System.Diagnostics; using System.Diagnostics;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a single LED of a RGB-device. /// Represents a single LED of a RGB-device.
@ -173,4 +173,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member #pragma warning disable 1591 // Missing XML comment for publicly visible type or member
namespace RGB.NET.Core namespace RGB.NET.Core;
{
public enum LedId public enum LedId
{ {
Invalid = -1, Invalid = -1,
@ -8338,4 +8338,3 @@ namespace RGB.NET.Core
Unknown1023 = 0x0FF003FF, Unknown1023 = 0x0FF003FF,
Unknown1024 = 0x0FF00400, Unknown1024 = 0x0FF00400,
} }
}

View File

@ -2,8 +2,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a mapping from <see cref="LedId"/> to a custom identifier. /// Represents a mapping from <see cref="LedId"/> to a custom identifier.
/// </summary> /// </summary>
@ -146,4 +146,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
using System.ComponentModel; using System.ComponentModel;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a basic bindable class which notifies when a property value changes. /// Represents a basic bindable class which notifies when a property value changes.
@ -59,4 +59,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,11 +1,10 @@
using System.ComponentModel; using System.ComponentModel;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a basic bindable class which notifies when a property value changes. /// Represents a basic bindable class which notifies when a property value changes.
/// </summary> /// </summary>
public interface IBindable : INotifyPropertyChanged public interface IBindable : INotifyPropertyChanged
{ {
} }
}

View File

@ -2,8 +2,8 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic placeable element. /// Represents a generic placeable element.
/// </summary> /// </summary>
@ -90,4 +90,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a placeable element. /// Represents a placeable element.
/// </summary> /// </summary>
@ -259,4 +259,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a point consisting of a X- and a Y-position. /// Represents a point consisting of a X- and a Y-position.
/// </summary> /// </summary>
@ -152,4 +152,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -6,8 +6,8 @@ using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a rectangle defined by it's position and it's size. /// Represents a rectangle defined by it's position and it's size.
/// </summary> /// </summary>
@ -239,4 +239,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents an angular rotation. /// Represents an angular rotation.
/// </summary> /// </summary>
@ -159,4 +159,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@
using System.Diagnostics; using System.Diagnostics;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a scaling. /// Represents a scaling.
/// </summary> /// </summary>
@ -141,4 +141,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains a list of different shapes used to define the layout of a LED. /// Contains a list of different shapes used to define the layout of a LED.
/// </summary> /// </summary>
@ -23,4 +23,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
Circle = 2, Circle = 2,
} }
}

View File

@ -3,8 +3,8 @@
using System.Diagnostics; using System.Diagnostics;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a size consisting of a width and a height. /// Represents a size consisting of a width and a height.
/// </summary> /// </summary>
@ -194,4 +194,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -7,8 +7,8 @@ using System.Collections.ObjectModel;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="AbstractBindable" /> /// <inheritdoc cref="AbstractBindable" />
/// <inheritdoc cref="IDisposable" /> /// <inheritdoc cref="IDisposable" />
/// <summary> /// <summary>
@ -383,4 +383,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc cref="AbstractDecoratable{T}" /> /// <inheritdoc cref="AbstractDecoratable{T}" />
/// <inheritdoc cref="IBrush" /> /// <inheritdoc cref="IBrush" />
/// <summary> /// <summary>
@ -106,4 +106,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a basic brush. /// Represents a basic brush.
/// </summary> /// </summary>
@ -38,4 +38,3 @@ namespace RGB.NET.Core
/// <param name="renderTargets">The <see cref="RenderTarget"/> (keys/points) of which the color should be calculated.</param> /// <param name="renderTargets">The <see cref="RenderTarget"/> (keys/points) of which the color should be calculated.</param>
IEnumerable<(RenderTarget renderTarget, Color color)> Render(Rectangle rectangle, IEnumerable<RenderTarget> renderTargets); IEnumerable<(RenderTarget renderTarget, Color color)> Render(Rectangle rectangle, IEnumerable<RenderTarget> renderTargets);
} }
}

View File

@ -1,8 +1,8 @@
// ReSharper disable MemberCanBePrivate.Global // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global // ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a brush drawing only a single color. /// Represents a brush drawing only a single color.
@ -59,4 +59,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a brush drawing a texture. /// Represents a brush drawing a texture.
@ -44,4 +44,3 @@
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Contains a list of all brush calculation modes. /// Contains a list of all brush calculation modes.
/// </summary> /// </summary>
@ -17,4 +17,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
Absolute Absolute
} }
}

View File

@ -1,8 +1,8 @@
// ReSharper disable MemberCanBePrivate.Global // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global // ReSharper disable UnusedAutoPropertyAccessor.Global
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a single target of a brush render. /// Represents a single target of a brush render.
/// </summary> /// </summary>
@ -42,4 +42,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
internal class EmptyTexture : ITexture internal class EmptyTexture : ITexture
{ {
#region Properties & Fields #region Properties & Fields
@ -10,4 +10,3 @@
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic texture. /// Represents a generic texture.
/// </summary> /// </summary>
@ -29,4 +29,3 @@
/// <returns>The sampled color.</returns> /// <returns>The sampled color.</returns>
Color this[in Rectangle rectangle] { get; } Color this[in Rectangle rectangle] { get; }
} }
}

View File

@ -2,8 +2,8 @@
using System.Buffers; using System.Buffers;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a texture made of pixels (like a common image). /// Represents a texture made of pixels (like a common image).
@ -226,4 +226,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a sampled that averages multiple color to a single color. /// Represents a sampled that averages multiple color to a single color.
/// </summary> /// </summary>
@ -32,4 +32,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic sampler to combine multipel data entries to a single one. /// Represents a generic sampler to combine multipel data entries to a single one.
/// </summary> /// </summary>
@ -15,4 +15,3 @@ namespace RGB.NET.Core
/// <param name="pixelData">The buffer used to write the resulting pixel to.</param> /// <param name="pixelData">The buffer used to write the resulting pixel to.</param>
void Sample(in SamplerInfo<T> info, in Span<T> pixelData); void Sample(in SamplerInfo<T> info, in Span<T> pixelData);
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents the information used to sample data. /// Represents the information used to sample data.
/// </summary> /// </summary>
@ -44,4 +44,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic update trigger. /// Represents a generic update trigger.
/// </summary> /// </summary>
@ -45,4 +45,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a set of custom data, each indexed by a string-key. /// Represents a set of custom data, each indexed by a string-key.
/// </summary> /// </summary>
@ -48,4 +48,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@ using System.Diagnostics;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents an update-trigger used to update devices with a maximum update-rate. /// Represents an update-trigger used to update devices with a maximum update-rate.
/// </summary> /// </summary>
@ -178,4 +178,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents an update trigger used to trigger device-updates. /// Represents an update trigger used to trigger device-updates.
/// </summary> /// </summary>
@ -10,4 +10,3 @@
/// </summary> /// </summary>
void TriggerHasData(); void TriggerHasData();
} }
}

View File

@ -1,8 +1,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic update queue. /// Represents a generic update queue.
/// </summary> /// </summary>
@ -29,4 +29,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
public interface IUpdateQueue : IUpdateQueue<object, Color> public interface IUpdateQueue : IUpdateQueue<object, Color>
{ } { }
}

View File

@ -3,8 +3,8 @@ using System.Buffers;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a generic update queue. /// Represents a generic update queue.
/// </summary> /// </summary>
@ -136,4 +136,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using System; using System;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <summary> /// <summary>
/// Represents a trigger causing an update. /// Represents a trigger causing an update.
/// </summary> /// </summary>
@ -27,4 +27,3 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
void Start(); void Start();
} }
}

View File

@ -4,8 +4,8 @@ using System.Diagnostics;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents an update trigger that is manully triggered by calling <see cref="TriggerUpdate"/>. /// Represents an update trigger that is manully triggered by calling <see cref="TriggerUpdate"/>.
@ -93,4 +93,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -5,8 +5,8 @@ using System.Diagnostics;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace RGB.NET.Core namespace RGB.NET.Core;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents an update trigger that triggers in a set interval. /// Represents an update trigger that triggers in a set interval.
@ -140,4 +140,3 @@ namespace RGB.NET.Core
#endregion #endregion
} }
}

View File

@ -6,8 +6,8 @@ using System.Collections.Generic;
using AuraServiceLib; using AuraServiceLib;
using RGB.NET.Core; using RGB.NET.Core;
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a device provider responsible for Cooler Master devices. /// Represents a device provider responsible for Cooler Master devices.
@ -92,4 +92,3 @@ namespace RGB.NET.Devices.Asus
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using RGB.NET.Core; using RGB.NET.Core;
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <inheritdoc cref="AsusRGBDevice{TDeviceInfo}" /> /// <inheritdoc cref="AsusRGBDevice{TDeviceInfo}" />
/// <summary> /// <summary>
/// Represents a Asus dram. /// Represents a Asus dram.
@ -38,4 +38,3 @@ namespace RGB.NET.Devices.Asus
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
// ReSharper disable InconsistentNaming // ReSharper disable InconsistentNaming
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
internal enum AsusDeviceType : uint internal enum AsusDeviceType : uint
{ {
ALL = 0, ALL = 0,
@ -22,4 +22,3 @@ namespace RGB.NET.Devices.Asus
CHASSIS_RGB = 0xB0000, CHASSIS_RGB = 0xB0000,
PROJECTOR_RGB = 0xC0000 PROJECTOR_RGB = 0xC0000
} }
}

View File

@ -1,8 +1,8 @@
// ReSharper disable InconsistentNaming // ReSharper disable InconsistentNaming
#pragma warning disable 1591 #pragma warning disable 1591
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <summary> /// <summary>
/// Represents a LED ID as they are known by the ASUS SDK /// Represents a LED ID as they are known by the ASUS SDK
/// </summary> /// </summary>
@ -162,4 +162,3 @@ namespace RGB.NET.Devices.Asus
UNDOCUMENTED_5 = 0x103, UNDOCUMENTED_5 = 0x103,
UNDOCUMENTED_6 = 0xDA, // Bottom-left function on the ROG Zephyrus Duo 15 UNDOCUMENTED_6 = 0xDA, // Bottom-left function on the ROG Zephyrus Duo 15
} }
}

View File

@ -1,5 +1,5 @@
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <summary> /// <summary>
/// Represents a type of ASUS LED as known by the ASUS SDK /// Represents a type of ASUS LED as known by the ASUS SDK
/// </summary> /// </summary>
@ -15,4 +15,3 @@
/// </summary> /// </summary>
Light Light
} }
}

View File

@ -1,7 +1,7 @@
using RGB.NET.Core; using RGB.NET.Core;
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <inheritdoc cref="AbstractRGBDevice{TDeviceInfo}" /> /// <inheritdoc cref="AbstractRGBDevice{TDeviceInfo}" />
/// <summary> /// <summary>
/// Represents a generic Asus-device. (keyboard, mouse, headset, mousepad). /// Represents a generic Asus-device. (keyboard, mouse, headset, mousepad).
@ -22,4 +22,3 @@ namespace RGB.NET.Devices.Asus
#endregion #endregion
} }
}

View File

@ -1,8 +1,8 @@
using AuraServiceLib; using AuraServiceLib;
using RGB.NET.Core; using RGB.NET.Core;
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a generic information for a Corsair-<see cref="T:RGB.NET.Core.IRGBDevice" />. /// Represents a generic information for a Corsair-<see cref="T:RGB.NET.Core.IRGBDevice" />.
@ -54,4 +54,3 @@ namespace RGB.NET.Devices.Asus
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using RGB.NET.Core; using RGB.NET.Core;
namespace RGB.NET.Devices.Asus namespace RGB.NET.Devices.Asus;
{
/// <inheritdoc cref="AsusRGBDevice{TDeviceInfo}" /> /// <inheritdoc cref="AsusRGBDevice{TDeviceInfo}" />
/// <summary> /// <summary>
/// Represents a Asus headset. /// Represents a Asus headset.
@ -47,4 +47,3 @@ namespace RGB.NET.Devices.Asus
#endregion #endregion
} }
}

Some files were not shown because too many files have changed in this diff Show More