tengri/Content/UE/ModifyContextOptions.ts

21 lines
639 B
TypeScript

// UE/ModifyContextOptions.ts
import { StructBase } from '#root/UE/StructBase.ts';
export class ModifyContextOptions extends StructBase {
public forceImmediately: boolean = false;
public ignoreAllPressedKeysUntilRelease: boolean = false;
public notifyUserSettings: boolean = false;
constructor(
ignoreAllPressedKeysUntilRelease: boolean = false,
forceImmediately: boolean = false,
notifyUserSettings: boolean = false
) {
super();
this.forceImmediately = forceImmediately;
this.ignoreAllPressedKeysUntilRelease = ignoreAllPressedKeysUntilRelease;
this.notifyUserSettings = notifyUserSettings;
}
}