Example #1
0
 public BepinGTFOSettingFloat(string title, eSettingInputType inputType, eCellSettingID settingID, ConfigEntry <float> entry, float defaultValue, float minValue, float maxValue) : base(title, inputType, settingID)
 {
     this.entry        = entry;
     this.defaultValue = defaultValue;
     this.minValue     = minValue;
     this.maxValue     = maxValue;
 }
Example #2
0
 public BepinGTFOSettingBool(string title, eSettingInputType inputType, eCellSettingID settingID, ConfigEntry <bool> entry, bool defaultValue) : base(title, inputType, settingID)
 {
     this.entry        = entry;
     this.defaultValue = defaultValue;
 }
Example #3
0
 public BepinGTFOSettingString(string title, eSettingInputType inputType, eCellSettingID settingID, ConfigEntry <string> entry, string defaultValue, string[] possibleValues) : base(title, inputType, settingID)
 {
     this.entry          = entry;
     this.defaultValue   = defaultValue;
     this.possibleValues = possibleValues;
 }
Example #4
0
 public BepinGTFOSettingHeader(string title, eSettingInputType inputType, eCellSettingID settingID) : base(title, inputType, settingID)
 {
 }
Example #5
0
 protected BepinGTFOSettingBase(string title, eSettingInputType inputType, eCellSettingID settingID)
 {
     this.title     = title;
     this.inputType = inputType;
     this.settingID = settingID;
 }