19 lines
430 B
TypeScript
19 lines
430 B
TypeScript
// UE/StringLibrary.ts
|
|
|
|
import { BlueprintFunctionLibrary } from '#root/UE/BlueprintFunctionLibrary.ts';
|
|
|
|
class StringLibraryClass extends BlueprintFunctionLibrary {
|
|
constructor(
|
|
outer: null | BlueprintFunctionLibrary = null,
|
|
name: string = 'StringLibrary'
|
|
) {
|
|
super(outer, name);
|
|
}
|
|
|
|
public Append(A: string, B: string): string {
|
|
return A + B;
|
|
}
|
|
}
|
|
|
|
export const StringLibrary = new StringLibraryClass();
|