Comment updates and License added.

This commit is contained in:
Neil Dorin
2020-02-13 15:59:31 -07:00
parent caf2731dfb
commit a42f67b8d6
25 changed files with 117 additions and 31 deletions

View File

@@ -9,6 +9,7 @@ using PepperDash.Essentials;
using PepperDash.Essentials.Core;
using PepperDash.Essentials.Core.Config;
using PepperDash.Core;
using PepperDash.Essentials.Bridges;
namespace EssentialsPluginTemplateEPI
{
@@ -18,7 +19,7 @@ namespace EssentialsPluginTemplateEPI
public class EssentialsPluginTemplateDevice : Device, IBridge
{
/// <summary>
/// Device Constructor. Called by
/// Device Constructor. Called by BuildDevice
/// </summary>
/// <param name="key"></param>
/// <param name="name"></param>
@@ -29,10 +30,25 @@ namespace EssentialsPluginTemplateEPI
}
public void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey)
/// <summary>
/// Add items to be executed during the Activaction phase
/// </summary>
/// <returns></returns>
public override bool CustomActivate()
{
return base.CustomActivate();
}
/// <summary>
/// This method gets called by the EiscApi bridge and calls your bridge extension method
/// </summary>
/// <param name="trilist"></param>
/// <param name="joinStart"></param>
/// <param name="joinMapKey"></param>
public void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey)
{
this.LinkToApi(trilist, joinStart, joinMapKey);
}
}
}