コード例 #1
0
ファイル: IoUtil.cs プロジェクト: MeltyPlayer/Pikmin2Utility
 public static uint ReadUInt32(IList <byte> buffer, uint offset)
 => IoUtil.ReadUInt(buffer, offset, 4);
コード例 #2
0
ファイル: IoUtil.cs プロジェクト: MeltyPlayer/Pikmin2Utility
 public static ushort ReadUInt16(IList <byte> buffer, uint offset)
 => (ushort)IoUtil.ReadUInt(buffer, offset, 2);