Add Template, more custom classes & fix issues

This commit is contained in:
2025-06-08 00:54:06 +02:00
parent c9bee028d9
commit 73a4da1edd
9 changed files with 466 additions and 53 deletions
+24
View File
@@ -0,0 +1,24 @@
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()
{
}
}
}