mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-29 20:06:25 +02:00
15 lines
No EOL
331 B
C#
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; }
|
|
}
|
|
} |