0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 09:41:41 +00:00
ryujinx-fork/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

15 lines
No EOL
331 B
C#

namespace Ryujinx.HLE.Loaders.Executables
{
interface IExecutable
{
byte[] Text { get; }
byte[] RO { get; }
byte[] Data { get; }
int TextOffset { get; }
int ROOffset { get; }
int DataOffset { get; }
int BssOffset { get; }
int BssSize { get; }
}
}