mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 08:38:37 +00:00
27 lines
503 B
C#
27 lines
503 B
C#
|
using Ryujinx.Graphics.Gal;
|
||
|
using System.IO;
|
||
|
|
||
|
namespace Ryushader
|
||
|
{
|
||
|
class Memory : IGalMemory
|
||
|
{
|
||
|
private Stream BaseStream;
|
||
|
|
||
|
private BinaryReader Reader;
|
||
|
|
||
|
public Memory(Stream BaseStream)
|
||
|
{
|
||
|
this.BaseStream = BaseStream;
|
||
|
|
||
|
Reader = new BinaryReader(BaseStream);
|
||
|
}
|
||
|
|
||
|
public int ReadInt32(long Position)
|
||
|
{
|
||
|
BaseStream.Seek(Position, SeekOrigin.Begin);
|
||
|
|
||
|
return Reader.ReadInt32();
|
||
|
}
|
||
|
}
|
||
|
}
|