mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
26 lines
565 B
C#
26 lines
565 B
C#
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)
|
|
{
|
|
this.Memory = Memory;
|
|
this.Position = Position;
|
|
}
|
|
|
|
public void Write<T>(T Value) where T : struct
|
|
{
|
|
MemoryHelper.Write(Memory, Position, Value);
|
|
|
|
Position += Marshal.SizeOf<T>();
|
|
}
|
|
}
|
|
}
|