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