Initial Commit
This commit is contained in:
commit
d2176afff9
23 changed files with 778 additions and 0 deletions
9
CruelMan/Modules/Settings/BooleanSetting.cs
Normal file
9
CruelMan/Modules/Settings/BooleanSetting.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
namespace CruelMan.Modules.Settings {
|
||||
public abstract class BooleanSetting : Setting {
|
||||
public bool Value = false;
|
||||
|
||||
public void Toggle() {
|
||||
Value = !Value;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue