15 lines
267 B
C#
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;
|
|
}
|
|
}
|