Files
riz-au-lait-ui/Assets/Scripts/LigneTexteTTS.cs
2025-12-10 18:51:40 +01:00

15 lines
267 B
C#

using Meta.WitAi.TTS.Utilities;
using UnityEngine;
public class LigneTexteTTS
{
public TTSSpeaker speaker;
public string text;
public LigneTexteTTS(TTSSpeaker speaker, string text)
{
this.speaker = speaker;
this.text = text;
}
}