16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
// UE/ActorComponent.ts
|
|
|
|
import { Actor } from '#root/UE/Actor.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);
|
|
}
|
|
|
|
public GetOwner(): Actor {
|
|
return new Actor();
|
|
}
|
|
}
|