-
Notifications
You must be signed in to change notification settings - Fork 0
7. RandomColorLimit
Enes Okullu edited this page Apr 11, 2024
·
2 revisions
RandomColorLimit is a class to provide minimum and maximum red, green and blue values in byte.
RandomColorLimit
{
public byte RedMin;
public byte RedMax;
public byte GreenMin;
public byte GreenMax;
public byte BlueMin;
public byte BlueMax;
}
RandomColorLimit(byte redMax, byte greenMax, byte blueMax);
RandomColorLimit(byte redMin, byte redMax, byte blueMin, byte blueMax, byte greenMin, byte greenMax);