From 0ee3e1d52b8bdfbda0b2e625afb8bf7651d75d33 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 29 Feb 2024 13:27:02 -0600 Subject: [PATCH] refactor: modify AddAction method to take the messenger --- .../DeviceTypeInterfaces/IMobileControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs index 3ab7b7c4..d32de60d 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs @@ -37,7 +37,7 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces void SendMessageObject(IMobileControlMessage o); - void AddAction(string key, Action action); + void AddAction(IMobileControlMessenger messenger, Action action); void RemoveAction(string key);