|
// UE/Color.ts
|
|
|
|
import { StructBase } from '#root/UE/StructBase.ts';
|
|
import type { UInt8 } from '#root/UE/UInt8.ts';
|
|
|
|
export class Color extends StructBase {
|
|
constructor(
|
|
public B: UInt8 = 0,
|
|
public G: UInt8 = 0,
|
|
public R: UInt8 = 0,
|
|
public A: UInt8 = 0
|
|
) {
|
|
super();
|
|
}
|
|
}
|