(int value, FieldInfo field, string group)
| 232 | public int MaxValue = int.MaxValue; |
| 233 | |
| 234 | public IntSetting(int value, FieldInfo field, string group) |
| 235 | : base(field, SettingType.Int, group) |
| 236 | { |
| 237 | Value = value; |
| 238 | MinValueAttribute.GetMinValue(field, ref MinValue); |
| 239 | MaxValueAttribute.GetMaxValue(field, ref MaxValue); |
| 240 | } |
| 241 | |
| 242 | public override void WriteDeclaration(List<string> lines) |
| 243 | { |
nothing calls this directly
no test coverage detected