12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- public struct Setting
- {
- public string option;
- public string pattern;
- public string name;
- public string usage;
- public SettingType type;
- public bool handler;
- public Setting(string option, string pattern, string name, string usage, SettingType type, bool handler = false)
- {
- this.option = option;
- this.pattern = pattern;
- this.name = name;
- this.usage = usage;
- this.type = type;
- this.handler = handler;
- }
- }
|