12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
// UE/TextLayoutWidget.ts
|
|
|
|
import { Name } from '#root/UE/Name.ts';
|
|
import { UEObject } from '#root/UE/UEObject.ts';
|
|
import { Widget } from '#root/UE/Widget.ts';
|
|
|
|
export class TextLayoutWidget extends Widget {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
}
|