Struct Color4B
- Namespace
- RetroEditor.Plugins
- Assembly
- RetroEditor.dll
Represents a color with four components (Red, Green, Blue, Alpha) using byte values
public struct Color4B
- Inherited Members
Constructors
Color4B(byte, byte, byte, byte)
Initializes a new instance of the Color4B struct with the specified RGBA values
public Color4B(byte r, byte g, byte b, byte a)
Parameters
Fields
A
Alpha component of the color
public byte A
Field Value
B
Blue component of the color
public byte B
Field Value
G
Green component of the color
public byte G
Field Value
R
Red component of the color
public byte R