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

◆ Checked

virtual bool System.ComponentModel.Design.MenuCommand.Checked
getset

Definition at line 14 of file MenuCommand.cs.

15 {
16 get
17 {
18 return (_status & 4) != 0;
19 }
20 set
21 {
22 SetStatus(4, value);
23 }
24 }
void SetStatus(int mask, bool value)