Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
OverlaySocialModule.cs
Go to the documentation of this file.
2
3public abstract class OverlaySocialModule : ISocialModule
4{
5 public abstract void Initialize();
6
7 public abstract void Shutdown();
8
9 public abstract bool IsGamepadTextInputActive();
10
11 public abstract bool ShowGamepadTextInput(string description, uint maxLength, bool multiLine = false, string existingText = "", bool password = false);
12
13 public abstract string GetGamepadText();
14}
bool ShowGamepadTextInput(string description, uint maxLength, bool multiLine=false, string existingText="", bool password=false)