diff --git a/src/hyperion-remote/ColorCorrectionValues.h b/src/hyperion-remote/ColorCorrectionValues.h new file mode 100644 index 00000000..0cd0e911 --- /dev/null +++ b/src/hyperion-remote/ColorCorrectionValues.h @@ -0,0 +1,12 @@ +#pragma once + +/// Simple structure to contain the values of a color transformation +struct ColorCorrectionValues +{ + /// The value for the red color-channel + int valueRed; + /// The value for the green color-channel + int valueGreen; + /// The value for the blue color-channel + int valueBlue; +};