mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-30 02:52:14 +00:00
18 lines
457 B
C#
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; }
|
|
|
|
}
|
|
}
|