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

◆ CursorSize

int System.Console.CursorSize
staticgetset

Definition at line 232 of file Console.cs.

233 {
234 [UnsupportedOSPlatform("android")]
235 [UnsupportedOSPlatform("browser")]
236 [UnsupportedOSPlatform("ios")]
237 [UnsupportedOSPlatform("tvos")]
238 get
239 {
240 return ConsolePal.CursorSize;
241 }
242 [SupportedOSPlatform("windows")]
243 set
244 {
245 ConsolePal.CursorSize = value;
246 }
247 }