Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
INetDiagnosticsUI.cs
Go to the documentation of this file.
2
3namespace Terraria.UI;
4
5public interface INetDiagnosticsUI
6{
7 void Reset();
8
9 void Draw(SpriteBatch spriteBatch);
10
11 void CountReadMessage(int messageId, int messageLength);
12
13 void CountSentMessage(int messageId, int messageLength);
14
15 void CountReadModuleMessage(int moduleMessageId, int messageLength);
16
17 void CountSentModuleMessage(int moduleMessageId, int messageLength);
18}
void CountReadModuleMessage(int moduleMessageId, int messageLength)
void CountReadMessage(int messageId, int messageLength)
void CountSentMessage(int messageId, int messageLength)
void CountSentModuleMessage(int moduleMessageId, int messageLength)
void Draw(SpriteBatch spriteBatch)