mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-27 22:11:39 +00:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
/**
|
|
* Radegast Metaverse Client
|
|
* Copyright(c) 2009-2014, Radegast Development Team
|
|
* Copyright(c) 2016-2020, Sjofn, LLC
|
|
* All rights reserved.
|
|
*
|
|
* Radegast is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program.If not, see<https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
//using System.Drawing;
|
|
using UnityEngine;
|
|
|
|
namespace Raindrop
|
|
{
|
|
public interface ITextPrinter
|
|
{
|
|
void InsertLink(string text);
|
|
void InsertLink(string text, string hyperlink);
|
|
void PrintText(string text);
|
|
void PrintTextLine(string text);
|
|
void PrintTextLine(string text, Color color);
|
|
void ClearText();
|
|
|
|
string Content { get; set; }
|
|
}
|
|
}
|