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

◆ Visible

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

Definition at line 52 of file MenuCommand.cs.

53 {
54 get
55 {
56 return (_status & 0x10) == 0;
57 }
58 set
59 {
60 SetStatus(16, !value);
61 }
62 }
void SetStatus(int mask, bool value)