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

◆ IsIncompleteObjectReference

bool System.Runtime.Serialization.ObjectHolder.IsIncompleteObjectReference
getsetpackage

Definition at line 35 of file ObjectHolder.cs.

36 {
37 get
38 {
39 return (_flags & 1) != 0;
40 }
41 set
42 {
43 if (value)
44 {
45 _flags |= 1;
46 }
47 else
48 {
49 _flags &= -2;
50 }
51 }
52 }

Referenced by System.Runtime.Serialization.ObjectManager.DoFixups().