tengri/Content/UE/Info.ts

12 lines
310 B
TypeScript

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