13 lines
431 B
TypeScript
13 lines
431 B
TypeScript
|
|
import { LLGestureStep } from './LLGestureStep';
|
||
|
|
import { LLGestureStepType } from '../enums/LLGestureStepType';
|
||
|
|
import { UUID } from './UUID';
|
||
|
|
import { LLGestureSoundFlags } from '../enums/LLGestureSoundFlags';
|
||
|
|
|
||
|
|
export class LLGestureSoundStep extends LLGestureStep
|
||
|
|
{
|
||
|
|
stepType: LLGestureStepType = LLGestureStepType.Sound;
|
||
|
|
soundName: string;
|
||
|
|
assetID: UUID;
|
||
|
|
flags: LLGestureSoundFlags = LLGestureSoundFlags.None;
|
||
|
|
}
|