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

◆ Enabled

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

Definition at line 26 of file MenuCommand.cs.

27 {
28 get
29 {
30 return (_status & 2) != 0;
31 }
32 set
33 {
34 SetStatus(2, value);
35 }
36 }
void SetStatus(int mask, bool value)