From bc27bd77eac30d8d91cbe779dc13f6357d3923d2 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Thu, 16 Jan 2020 10:29:40 -0800 Subject: [PATCH] Move IKeyboardMouseInput interface. --- ScreenCast.Core/Conductor.cs | 2 +- ScreenCast.Core/{Input => Interfaces}/IKeyboardMouseInput.cs | 2 +- ScreenCast.Core/Sockets/CasterSocket.cs | 2 +- ScreenCast.Linux/Services/X11Input.cs | 2 +- ScreenCast.Win/Services/WinInput.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename ScreenCast.Core/{Input => Interfaces}/IKeyboardMouseInput.cs (94%) diff --git a/ScreenCast.Core/Conductor.cs b/ScreenCast.Core/Conductor.cs index 4f1c45dd..bc07a7ee 100644 --- a/ScreenCast.Core/Conductor.cs +++ b/ScreenCast.Core/Conductor.cs @@ -2,7 +2,7 @@ using Microsoft.Extensions.DependencyInjection; using Remotely.Shared.Models; using Remotely.ScreenCast.Core.Enums; -using Remotely.ScreenCast.Core.Input; +using Remotely.ScreenCast.Core.Interfaces; using Remotely.ScreenCast.Core.Models; using Remotely.ScreenCast.Core.Sockets; using Remotely.ScreenCast.Core.Services; diff --git a/ScreenCast.Core/Input/IKeyboardMouseInput.cs b/ScreenCast.Core/Interfaces/IKeyboardMouseInput.cs similarity index 94% rename from ScreenCast.Core/Input/IKeyboardMouseInput.cs rename to ScreenCast.Core/Interfaces/IKeyboardMouseInput.cs index 1172fc8c..b509f556 100644 --- a/ScreenCast.Core/Input/IKeyboardMouseInput.cs +++ b/ScreenCast.Core/Interfaces/IKeyboardMouseInput.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Remotely.ScreenCast.Core.Input +namespace Remotely.ScreenCast.Core.Interfaces { public interface IKeyboardMouseInput { diff --git a/ScreenCast.Core/Sockets/CasterSocket.cs b/ScreenCast.Core/Sockets/CasterSocket.cs index 0d2371ac..ec301343 100644 --- a/ScreenCast.Core/Sockets/CasterSocket.cs +++ b/ScreenCast.Core/Sockets/CasterSocket.cs @@ -12,7 +12,7 @@ using System.Diagnostics; using System.IO; using System.Net; using Remotely.ScreenCast.Core.Services; -using Remotely.ScreenCast.Core.Input; +using Remotely.ScreenCast.Core.Interfaces; using Remotely.Shared.Win32; using Remotely.ScreenCast.Core.Interfaces; using Microsoft.Extensions.DependencyInjection; diff --git a/ScreenCast.Linux/Services/X11Input.cs b/ScreenCast.Linux/Services/X11Input.cs index bcb2e541..256b437f 100644 --- a/ScreenCast.Linux/Services/X11Input.cs +++ b/ScreenCast.Linux/Services/X11Input.cs @@ -1,4 +1,4 @@ -using Remotely.ScreenCast.Core.Input; +using Remotely.ScreenCast.Core.Interfaces; using Remotely.ScreenCast.Core.Services; using Remotely.ScreenCast.Linux.X11Interop; using Remotely.ScreenCast.Core; diff --git a/ScreenCast.Win/Services/WinInput.cs b/ScreenCast.Win/Services/WinInput.cs index d3d12e8b..8a6bd5cb 100644 --- a/ScreenCast.Win/Services/WinInput.cs +++ b/ScreenCast.Win/Services/WinInput.cs @@ -1,4 +1,4 @@ -using Remotely.ScreenCast.Core.Input; +using Remotely.ScreenCast.Core.Interfaces; using Remotely.ScreenCast.Core.Models; using System; using Remotely.Shared.Win32;