17 lines
461 B
TypeScript
17 lines
461 B
TypeScript
// UE/Border.ts
|
|
|
|
import { ContentWidget } from '#root/UE/ContentWidget.ts';
|
|
import type { LinearColor } from '#root/UE/LinearColor.ts';
|
|
import { Name } from '#root/UE/Name.ts';
|
|
import { UEObject } from '#root/UE/UEObject.ts';
|
|
|
|
export class Border extends ContentWidget {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
|
|
public SetBrushColor(color: LinearColor): void {
|
|
console.log(color);
|
|
}
|
|
}
|