mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System.Runtime.InteropServices;
|
|
using NvAPIWrapper.Native.Interfaces;
|
|
|
|
namespace NvAPIWrapper.Native.GPU.Structures
|
|
{
|
|
/// <summary>
|
|
/// Holds information regarding a RGB control method
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
public struct IlluminationZoneControlDataManualRGB : IInitializable
|
|
{
|
|
internal IlluminationZoneControlDataManualRGBParameters _Parameters;
|
|
|
|
/// <summary>
|
|
/// Creates a new instance of <see cref="IlluminationZoneControlDataManualRGB" />.
|
|
/// </summary>
|
|
/// <param name="parameters">The RGB parameters.</param>
|
|
public IlluminationZoneControlDataManualRGB(IlluminationZoneControlDataManualRGBParameters parameters)
|
|
{
|
|
_Parameters = parameters;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the RGB parameters
|
|
/// </summary>
|
|
public IlluminationZoneControlDataManualRGBParameters Parameters
|
|
{
|
|
get => _Parameters;
|
|
}
|
|
}
|
|
} |