2020-11-19 16:51:14 +00:00
|
|
|
import { LLGestureStep } from './LLGestureStep';
|
|
|
|
|
import { LLGestureStepType } from '../enums/LLGestureStepType';
|
|
|
|
|
import { LLGestureWaitFlags } from '../enums/LLGestureWaitFlags';
|
|
|
|
|
|
|
|
|
|
export class LLGestureWaitStep extends LLGestureStep
|
|
|
|
|
{
|
2025-01-17 23:37:54 +00:00
|
|
|
public stepType: LLGestureStepType = LLGestureStepType.Wait;
|
|
|
|
|
public waitTime: number;
|
|
|
|
|
public flags: LLGestureWaitFlags = LLGestureWaitFlags.None;
|
2020-11-19 16:51:14 +00:00
|
|
|
}
|