Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IChatMonitor.cs
Go to the documentation of this file.
2
4
5public interface IChatMonitor
6{
7 void NewText(string newText, byte R = byte.MaxValue, byte G = byte.MaxValue, byte B = byte.MaxValue);
8
9 void NewTextMultiline(string text, bool force = false, Color c = default(Color), int WidthLimit = -1);
10
11 void DrawChat(bool drawingPlayerChat);
12
13 void Clear();
14
15 void Update();
16
17 void Offset(int linesOffset);
18
20
22}
void DrawChat(bool drawingPlayerChat)
void NewTextMultiline(string text, bool force=false, Color c=default(Color), int WidthLimit=-1)
void NewText(string newText, byte R=byte.MaxValue, byte G=byte.MaxValue, byte B=byte.MaxValue)