From 072618f981daefb9f37a2c41aa34065ad7d4c829 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 20 Apr 2020 10:12:33 -0600 Subject: [PATCH] moves IBridge back to Essentials --- PepperDashEssentials/Bridges/IBridge.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PepperDashEssentials/Bridges/IBridge.cs b/PepperDashEssentials/Bridges/IBridge.cs index a8b0a893..497985c7 100644 --- a/PepperDashEssentials/Bridges/IBridge.cs +++ b/PepperDashEssentials/Bridges/IBridge.cs @@ -1,4 +1,5 @@ using System; +using Crestron.SimplSharpPro.DeviceSupport; namespace PepperDash.Essentials.Bridges { @@ -6,7 +7,8 @@ namespace PepperDash.Essentials.Bridges /// Defines a device that uses the legacy JoinMapBase for its join map /// [Obsolete("IBridgeAdvanced should be used going forward with JoinMapBaseAdvanced")] - public interface IBridge: Core.Bridges.IBridge + public interface IBridge { + void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey); } } \ No newline at end of file