mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-04 20:19:10 +00:00
7 lines
207 B
C#
7 lines
207 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Translation
|
|
{
|
|
delegate void DispatcherFunction(nint nativeContext, ulong startAddress);
|
|
delegate ulong WrapperFunction(nint nativeContext, ulong startAddress);
|
|
}
|