Files
2026-05-26 16:15:54 +08:00

15 lines
307 B
C#

using System;
using TMPro;
public class DialogueLeft : DialogueBase
{
public TMP_Text text_content;
public void Init(string message, string userID, DateTime timeSpan, bool isSame)
{
playFabId = userID;
text_content.text = message;
Init(timeSpan, isSame);
}
}