(ArcView.Frame.ReadSByte): additional method.

This commit is contained in:
morkt 2015-08-05 11:53:58 +04:00
parent 036c19fabe
commit af0e936cbe

View File

@ -371,6 +371,12 @@ namespace GameRes
return m_view.ReadByte (offset-m_offset);
}
public sbyte ReadSByte (long offset)
{
Reserve (offset, 1);
return m_view.ReadSByte (offset-m_offset);
}
public ushort ReadUInt16 (long offset)
{
Reserve (offset, 2);