16 lines
389 B
TypeScript
16 lines
389 B
TypeScript
// UE/UserWidget.ts
|
|
|
|
import { Name } from '#root/UE/Name.ts';
|
|
import { UEObject } from '#root/UE/UEObject.ts';
|
|
import { Widget } from '#root/UE/Widget.ts';
|
|
|
|
export class UserWidget extends Widget {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
|
|
public AddToViewport(ZOrder: number = 0): void {
|
|
console.log(ZOrder);
|
|
}
|
|
}
|