From 2952b1ff0bdee67f08dc0fa3fdceb1e2832bff9e Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Tue, 11 Feb 2020 22:00:12 -0700 Subject: [PATCH] Updated Plugins (markdown) --- Plugins.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Plugins.md b/Plugins.md index 35689f1..1592d16 100644 --- a/Plugins.md +++ b/Plugins.md @@ -14,8 +14,8 @@ All plugin assemblies must contain a static method called LoadPlugin(): ``` csharp public class SomeDevice : Device , IBridge //IBridge only needs to be implemented if { - // This string is used to define the minimum version of the Essentials Framework - // required for this plugin + // This string is used to define the minimum version of the + // Essentials Framework required for this plugin public static string MinimumEssentialsFrameworkVersion = "1.4.23"; // This method gets called by the Essentials Framework when the application starts. @@ -28,7 +28,8 @@ public class SomeDevice : Device , IBridge //IBridge only needs to be implement // and returns an instance of the desired device type } - // This is a factory method to construct a device and return it to be added to the DeviceManager + // This is a factory method to construct a device and return it to be + // added to the DeviceManager public static Device FactoryMethod(DeviceConfig dc) { return new SomeDevice(dc.key, dc.name, dc);