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