tengri/Content/UE/ActorComponent.ts

11 lines
273 B
TypeScript

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