👀Writing Your First Plugin
Writing a plugin may seem difficult, but it is pretty straightforward!
First Lines of Code
public class MyFirstPlugin : Plugin
{
// The name of the plugin
public override string Name { get; } = "My First Plugin";
// The description of the plugin
public override string Description { get; } = "This plugin does magic!";
// The author of the plugin
public override string Author { get; } = "Me!"
// The current version of the plugin
public override Version Version { get; } = new Version(1, 0, 0, 0);
// The required version of LabAPI (usually the version the plugin was built with)
public override Version RequiredApiVersion { get; } = new (LabApiProperties.CompiledVersion);
}Entry point
Exit Point
Loading Priorities
Last updated