mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:29:00 +00:00
15 lines
339 B
C#
15 lines
339 B
C#
namespace Ryujinx.Core.Loaders.Executables
|
|
{
|
|
public interface IExecutable
|
|
{
|
|
byte[] Text { get; }
|
|
byte[] RO { get; }
|
|
byte[] Data { get; }
|
|
|
|
int Mod0Offset { get; }
|
|
int TextOffset { get; }
|
|
int ROOffset { get; }
|
|
int DataOffset { get; }
|
|
int BssSize { get; }
|
|
}
|
|
} |