aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Logging/Targets/ILogTarget.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Logging/Targets/ILogTarget.cs')
-rw-r--r--Ryujinx.Common/Logging/Targets/ILogTarget.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Common/Logging/Targets/ILogTarget.cs b/Ryujinx.Common/Logging/Targets/ILogTarget.cs
new file mode 100644
index 00000000..261c5e64
--- /dev/null
+++ b/Ryujinx.Common/Logging/Targets/ILogTarget.cs
@@ -0,0 +1,9 @@
+using System;
+
+namespace Ryujinx.Common.Logging
+{
+ public interface ILogTarget : IDisposable
+ {
+ void Log(object sender, LogEventArgs args);
+ }
+}