Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CursorVisible

bool System.Console.CursorVisible
staticgetset

Definition at line 393 of file Console.cs.

394 {
395 [SupportedOSPlatform("windows")]
396 get
397 {
398 return ConsolePal.CursorVisible;
399 }
400 [UnsupportedOSPlatform("android")]
401 [UnsupportedOSPlatform("browser")]
402 [UnsupportedOSPlatform("ios")]
403 [UnsupportedOSPlatform("tvos")]
404 set
405 {
406 ConsolePal.CursorVisible = value;
407 }
408 }