From 76f3b1b3a4637ec72abfbb8cbc0679f2e0ca838f Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 10 Jun 2018 21:46:42 -0300 Subject: Rename Ryujinx.Core to Ryujinx.HLE and add a separate project for a future LLE implementation --- Ryujinx.Core/Loaders/Executables/IExecutable.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Ryujinx.Core/Loaders/Executables/IExecutable.cs (limited to 'Ryujinx.Core/Loaders/Executables/IExecutable.cs') 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 -- cgit v1.2.3