aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Debugger/Debugger.cs
diff options
context:
space:
mode:
authorMary <me@thog.eu>2020-08-30 19:06:05 +0200
committerGitHub <noreply@github.com>2020-08-30 19:06:05 +0200
commit4f3ae6f62ca5858c2b74eba5a15bad5dff580349 (patch)
tree1ab0427f411d530b253abc73bb6ef97b64a3a6d6 /Ryujinx.Debugger/Debugger.cs
parentb9398f1f3a13612a0bc3e64205cdb7eca3f48d4d (diff)
Remove the Ryujinx.Debugger project (#1506)
This project wasn't really used by anyone and isn't worth mantaining. This commit remove the profiler entirely from Ryujinx and remove the associated CI tasks.
Diffstat (limited to 'Ryujinx.Debugger/Debugger.cs')
-rw-r--r--Ryujinx.Debugger/Debugger.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/Ryujinx.Debugger/Debugger.cs b/Ryujinx.Debugger/Debugger.cs
deleted file mode 100644
index 6dd3354c..00000000
--- a/Ryujinx.Debugger/Debugger.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using Ryujinx.Debugger.UI;
-
-namespace Ryujinx.Debugger
-{
- public class Debugger : IDisposable
- {
- public DebuggerWidget Widget { get; set; }
-
- public Debugger()
- {
- Widget = new DebuggerWidget();
- }
-
- public void Enable()
- {
- Widget.Enable();
- }
-
- public void Disable()
- {
- Widget.Disable();
- }
-
- public void Dispose()
- {
- Disable();
-
- Widget.Dispose();
- }
- }
-}