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

◆ IndentSize

int System.Diagnostics.Debug.IndentSize
staticgetset

Definition at line 201 of file Debug.cs.

202 {
203 get
204 {
205 return s_indentSize;
206 }
207 set
208 {
209 s_indentSize = ((value >= 0) ? value : 0);
210 s_provider.OnIndentSizeChanged(s_indentSize);
211 }
212 }
static volatile int s_indentSize
Definition Debug.cs:175
static volatile DebugProvider s_provider
Definition Debug.cs:170