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

◆ WindowWidth

int System.Console.WindowWidth
staticgetset

Definition at line 347 of file Console.cs.

348 {
349 [UnsupportedOSPlatform("android")]
350 [UnsupportedOSPlatform("browser")]
351 [UnsupportedOSPlatform("ios")]
352 [UnsupportedOSPlatform("tvos")]
353 get
354 {
355 return ConsolePal.WindowWidth;
356 }
357 [SupportedOSPlatform("windows")]
358 set
359 {
360 ConsolePal.WindowWidth = value;
361 }
362 }