tengri/Content/UE/Info.ts

12 lines
293 B
TypeScript

// UE/Info.ts
import { Actor } from '#root/UE/Actor.ts';
import { Name } from '#root/UE/Name.ts';
import { UEObject } from '#root/UE/UEObject.ts';
export class Info extends Actor {
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
super(outer, name);
}
}