tengri/Content/UE/Color.ts

16 lines
311 B
TypeScript

// Content/UE/Color.ts
import { StructBase } from '/Content/UE/StructBase.ts';
import type { UInt8 } from '/Content/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();
}
}