16 lines
192 B
C#
16 lines
192 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.ExporterV2
|
|||
|
|
{
|
|||
|
|
internal struct RGBA
|
|||
|
|
{
|
|||
|
|
public byte R;
|
|||
|
|
|
|||
|
|
public byte G;
|
|||
|
|
|
|||
|
|
public byte B;
|
|||
|
|
|
|||
|
|
public byte A;
|
|||
|
|
}
|
|||
|
|
}
|