|
// UE/BlueprintFunctionLibrary.ts
|
|
|
|
import { UEObject } from '#root/UE/UEObject.ts';
|
|
|
|
export class BlueprintFunctionLibrary extends UEObject {
|
|
constructor(
|
|
outer: UEObject | null = null,
|
|
name: string = 'BlueprintFunctionLibrary'
|
|
) {
|
|
super(outer, name);
|
|
}
|
|
}
|