Files
RaindropViewer/Assets/Raindrop/UI/chat/printer_component/ITextPrinter.cs
T
2022-03-28 21:29:45 +08:00

18 lines
457 B
C#

using UnityEngine;
namespace Raindrop.UI.chat.printer_component
{
// classes implement this interface to print content to screen.
public interface ITextPrinter
{
void InsertLink(string text, string hyperlink);
void PrintText(string text, Color color);
void PrintTextLine(string text);
void PrintTextLine(string text, Color color);
void ClearText();
string Content { get; set; }
}
}