Class EngineConfig
Represents the configuration for an engine.
public class EngineConfig : FeatureConfig, IEngineConfig, IFeatureConfig, IConfig
- Inheritance
-
EngineConfig
- Implements
- Inherited Members
- Extension Methods
Constructors
EngineConfig(string, string, string, string, string, bool)
Represents the configuration for an engine.
public EngineConfig(string name, string description, string version, string author, string relativePath, bool autoLoadDependencies = true)
Parameters
namestringName of the engine.
descriptionstringDescription of the engine.
versionstringVersion of the engine.
authorstringAuthor of the engine.
relativePathstringRelative path for the engine configuration.
autoLoadDependenciesboolIndicates whether to automatically load dependencies.
Properties
AutoLoadDependencies
Should the engine automatically load its dependencies
public bool AutoLoadDependencies { get; }
Property Value
Methods
Deconstruct(out string, out string, out string, out string, out string?, out bool)
public void Deconstruct(out string name, out string description, out string version, out string author, out string? relativePath, out bool autoLoadDependencies)