1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-26 01:26:47 -06:00

17 lines
420 B
C#

using System.Collections.ObjectModel;
namespace Ryujinx.Loaders.Executables
{
interface IExecutable
{
ReadOnlyCollection<byte> Text { get; }
ReadOnlyCollection<byte> RO { get; }
ReadOnlyCollection<byte> Data { get; }
int Mod0Offset { get; }
int TextOffset { get; }
int ROOffset { get; }
int DataOffset { get; }
int BssSize { get; }
}
}