hyperion.ng/src/hyperion-remote/ColorTransformValues.h
2013-09-09 20:35:28 +00:00

13 lines
299 B
C

#pragma once
/// Simple structure to contain the values of a color transformation
struct ColorTransformValues
{
/// The value for the red color-channel
double valueRed;
/// The value for the green color-channel
double valueGreen;
/// The value for the blue color-channel
double valueBlue;
};