11 lines
274 B
C#
11 lines
274 B
C#
using BriarQueen.Data.Identifiers;
|
|
using BriarQueen.Framework.Events.System;
|
|
|
|
namespace BriarQueen.Framework.Events.Audio
|
|
{
|
|
public record VoicePlaybackStartedEvent(
|
|
VoiceKey VoiceKey,
|
|
SubtitleKey SubtitleKey,
|
|
float ClipLengthSeconds) : IEvent;
|
|
}
|