17 lines
481 B
TypeScript
17 lines
481 B
TypeScript
// Content/UE/Border.ts
|
|
|
|
import { ContentWidget } from '/Content/UE/ContentWidget.ts';
|
|
import type { LinearColor } from '/Content/UE/LinearColor.ts';
|
|
import { Name } from '/Content/UE/Name.ts';
|
|
import { UEObject } from '/Content/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);
|
|
}
|
|
}
|