diff options
Diffstat (limited to 'Ryujinx.Core/Loaders/Executables/IExecutable.cs')
| -rw-r--r-- | Ryujinx.Core/Loaders/Executables/IExecutable.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Ryujinx.Core/Loaders/Executables/IExecutable.cs b/Ryujinx.Core/Loaders/Executables/IExecutable.cs index 73787b1d..09d0aab2 100644 --- a/Ryujinx.Core/Loaders/Executables/IExecutable.cs +++ b/Ryujinx.Core/Loaders/Executables/IExecutable.cs @@ -1,12 +1,10 @@ -using System.Collections.ObjectModel; - namespace Ryujinx.Core.Loaders.Executables { public interface IExecutable { - ReadOnlyCollection<byte> Text { get; } - ReadOnlyCollection<byte> RO { get; } - ReadOnlyCollection<byte> Data { get; } + byte[] Text { get; } + byte[] RO { get; } + byte[] Data { get; } int Mod0Offset { get; } int TextOffset { get; } |
