aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs')
-rw-r--r--src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs b/src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs
deleted file mode 100644
index e530d2c4..00000000
--- a/src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-
-namespace Ryujinx.HLE.Ui
-{
- public interface IDynamicTextInputHandler : IDisposable
- {
- event DynamicTextChangedHandler TextChangedEvent;
- event KeyPressedHandler KeyPressedEvent;
- event KeyReleasedHandler KeyReleasedEvent;
-
- bool TextProcessingEnabled { get; set; }
-
- void SetText(string text, int cursorBegin);
- void SetText(string text, int cursorBegin, int cursorEnd);
- }
-}