1
0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2025-02-28 23:51:29 +01:00

12 lines
234 B
C#
Raw Normal View History

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);
}
}