12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
// Content/UE/SceneComponent.ts
|
|
|
|
import { ActorComponent } from '/Content/UE/ActorComponent.ts';
|
|
import { Name } from '/Content/UE/Name.ts';
|
|
import { UEObject } from '/Content/UE/UEObject.ts';
|
|
|
|
export class SceneComponent extends ActorComponent {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
}
|