12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
// Content/UE/InputAction.ts
|
|
|
|
import { DataAsset } from '/Content/UE/DataAsset.ts';
|
|
import { Name } from '/Content/UE/Name.ts';
|
|
import type { UEObject } from '/Content/UE/UEObject.ts';
|
|
|
|
export class InputAction extends DataAsset {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
}
|