aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Loaders/Executables/IExecutable.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-06-10 21:46:42 -0300
committergdkchan <gab.dark.100@gmail.com>2018-06-10 21:46:42 -0300
commit76f3b1b3a4637ec72abfbb8cbc0679f2e0ca838f (patch)
tree0411b709de31c1c0517763512df8eeb9f7491bc9 /Ryujinx.Core/Loaders/Executables/IExecutable.cs
parent518fe799da6dd4f12c58c9e6e174767effb0b868 (diff)
Rename Ryujinx.Core to Ryujinx.HLE and add a separate project for a future LLE implementation
Diffstat (limited to 'Ryujinx.Core/Loaders/Executables/IExecutable.cs')
-rw-r--r--Ryujinx.Core/Loaders/Executables/IExecutable.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Ryujinx.Core/Loaders/Executables/IExecutable.cs b/Ryujinx.Core/Loaders/Executables/IExecutable.cs
deleted file mode 100644
index 412058d8..00000000
--- a/Ryujinx.Core/Loaders/Executables/IExecutable.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace Ryujinx.Core.Loaders.Executables
-{
- public interface IExecutable
- {
- string Name { get; }
-
- byte[] Text { get; }
- byte[] RO { get; }
- byte[] Data { get; }
-
- int Mod0Offset { get; }
- int TextOffset { get; }
- int ROOffset { get; }
- int DataOffset { get; }
- int BssSize { get; }
- }
-} \ No newline at end of file