Ryujinx/Ryujinx.Core/Loaders/Executables/IExecutable.cs

15 lines
339 B
C#
Raw Normal View History

namespace Ryujinx.Core.Loaders.Executables
2018-02-05 00:08:20 +01:00
{
public interface IExecutable
2018-02-05 00:08:20 +01:00
{
byte[] Text { get; }
byte[] RO { get; }
byte[] Data { get; }
2018-02-05 00:08:20 +01:00
int Mod0Offset { get; }
int TextOffset { get; }
int ROOffset { get; }
int DataOffset { get; }
int BssSize { get; }
}
}