mirror of
https://github.com/KeatonTheBot/Ryujinx.git
synced 2026-03-23 20:07:42 +00:00
11 lines
234 B
C#
11 lines
234 B
C#
using System;
|
|
|
|
namespace Ryujinx.Memory
|
|
{
|
|
public interface IWritableBlock
|
|
{
|
|
void Write(ulong va, ReadOnlySpan<byte> data);
|
|
|
|
void WriteUntracked(ulong va, ReadOnlySpan<byte> data) => Write(va, data);
|
|
}
|
|
}
|