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