mirror of
https://github.com/PepperDash/EssentialsPluginTemplate.git
synced 2026-08-31 19:28:19 +00:00
Comment updates and License added.
This commit is contained in:
parent
caf2731dfb
commit
a42f67b8d6
25 changed files with 117 additions and 31 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue