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

◆ this[int bit]

bool System.Collections.Specialized.BitVector32.this[int bit]
getset

Definition at line 70 of file BitVector32.cs.

71 {
72 get
73 {
74 return (_data & bit) == (uint)bit;
75 }
76 set
77 {
78 if (value)
79 {
80 _data |= (uint)bit;
81 }
82 else
83 {
84 _data &= (uint)(~bit);
85 }
86 }
87 }