Class ConfigKeyDefault<T>
- Namespace
- MonkeyLoader.Configuration
- Assembly
- MonkeyLoader.dll
Implements a components that provide a default value for IDefiningConfigKey<T>s by using a provided factory function to generate the value.
public sealed class ConfigKeyDefault<T> : IConfigKeyDefault<T>, IConfigKeyComponent<IDefiningConfigKey<T>>, IComponent<IDefiningConfigKey<T>>
Type Parameters
T
The type of the config item's value.
- Inheritance
-
ConfigKeyDefault<T>
- Implements
- Inherited Members
Constructors
ConfigKeyDefault(Func<T>)
Creates an IConfigKeyDefault<T> component that uses the provided factory function to generate the default value.
public ConfigKeyDefault(Func<T> makeValue)
Parameters
makeValue
Func<T>The factory function that creates a new default value.
Methods
GetDefault()
Creates a new instance of the default value for the inner type T
of the config key.
public T GetDefault()
Returns
- T
The new default value.
Initialize(IDefiningConfigKey<T>)
Initializes this component when it's added to an
entity's component list.
This may throw a InvalidOperationException when the state of the given entity is invalid for this component.
public void Initialize(IDefiningConfigKey<T> config)
Parameters
config
IDefiningConfigKey<T>
Exceptions
- InvalidOperationException
When the state of the given entity is invalid.