12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
// UE/EngineSubsystem.ts
|
|
|
|
import { DynamicSubsystem } from '#root/UE/DynamicSubsystem.ts';
|
|
import { Name } from '#root/UE/Name.ts';
|
|
import { UEObject } from '#root/UE/UEObject.ts';
|
|
|
|
export class EngineSubsystem extends DynamicSubsystem {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
}
|