Class Plugin<TConfig, TTranslation>
Expose how a plugin has to be made.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Exiled.API.Features
Assembly: Exiled.API.dll
Syntax
public abstract class Plugin<TConfig, TTranslation> : Plugin<TConfig>, IPlugin<TConfig>, IComparable<IPlugin<IConfig>> where TConfig : IConfig, new()
where TTranslation : ITranslation, new()
Type Parameters
Name | Description |
---|---|
TConfig | The config type. |
TTranslation | The translation type. |
Constructors
| Improve this Doc View SourcePlugin()
Initializes a new instance of the Plugin<TConfig, TTranslation> class.
Declaration
public Plugin()
Properties
| Improve this Doc View SourceTranslation
Gets the plugin translations.
Declaration
public TTranslation Translation { get; }
Property Value
Type | Description |
---|---|
TTranslation |
Implements
System.IComparable<T>