Archived
1
0
Fork 0
forked from Mirror/Ryujinx
This repository has been archived on 2024-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
jinx/Ryujinx.HLE/Utilities/StructWriter.cs

26 lines
557 B
C#
Raw Normal View History

using ChocolArm64.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.Utilities
{
class StructWriter
{
private MemoryManager _memory;
public long Position { get; private set; }
public StructWriter(MemoryManager memory, long position)
{
_memory = memory;
Position = position;
}
public void Write<T>(T value) where T : struct
{
MemoryHelper.Write(_memory, Position, value);
Position += Marshal.SizeOf<T>();
}
}
}