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

◆ WindowHeight

int System.Console.WindowHeight
staticgetset

Definition at line 364 of file Console.cs.

365 {
366 [UnsupportedOSPlatform("android")]
367 [UnsupportedOSPlatform("browser")]
368 [UnsupportedOSPlatform("ios")]
369 [UnsupportedOSPlatform("tvos")]
370 get
371 {
372 return ConsolePal.WindowHeight;
373 }
374 [SupportedOSPlatform("windows")]
375 set
376 {
377 ConsolePal.WindowHeight = value;
378 }
379 }