mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 02:01:14 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
17 lines
318 B
C#
17 lines
318 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Device
|
|
{
|
|
public readonly struct RwCallback
|
|
{
|
|
public Action<int> Write { get; }
|
|
public Func<int> Read { get; }
|
|
|
|
public RwCallback(Action<int> write, Func<int> read)
|
|
{
|
|
Write = write;
|
|
Read = read;
|
|
}
|
|
}
|
|
}
|