123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- namespace BepInEx.Configuration
- {
-
-
-
- public abstract class AcceptableValueBase
- {
-
- protected AcceptableValueBase(Type valueType)
- {
- ValueType = valueType;
- }
-
-
-
- public abstract object Clamp(object value);
-
-
-
- public abstract bool IsValid(object value);
-
-
-
- public Type ValueType { get; }
-
-
-
- public abstract string ToDescriptionString();
- }
- }
|