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