using LabApi.Features; using LabApi.Loader.Features.Plugins; namespace TemplateProject { public class TemplateProject: Plugin { public override string Name => "TemplateProject"; public override string Author => "Code002Lover"; public override Version Version { get; } = new(1, 0, 0); public override string Description => "Is a template for creating plugins. It does nothing."; public override Version RequiredApiVersion { get; } = new(LabApiProperties.CompiledVersion); public override void Enable() { } public override void Disable() { } } }