Table of Contents

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

r byte
g byte
b byte
a byte

Fields

A

Alpha component of the color

public byte A

Field Value

byte

B

Blue component of the color

public byte B

Field Value

byte

G

Green component of the color

public byte G

Field Value

byte

R

Red component of the color

public byte R

Field Value

byte