1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using System; namespace Ryujinx.Cpu.LightningJit { class TranslatedFunction { public IntPtr FuncPointer { get; } public ulong GuestSize { get; } public TranslatedFunction(IntPtr funcPointer, ulong guestSize) { FuncPointer = funcPointer; GuestSize = guestSize; } } }