Initial commit
This commit is contained in:
commit
0f86b0434b
38 changed files with 2370 additions and 0 deletions
24
LibDgf/Aqualead/Archive/AlAarHeaderV2.cs
Normal file
24
LibDgf/Aqualead/Archive/AlAarHeaderV2.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace LibDgf.Aqualead.Archive
|
||||
{
|
||||
public class AlAarHeaderV2
|
||||
{
|
||||
// Magic and version omitted, handled in archive class
|
||||
public AlAarArchiveFlags Flags { get; set; }
|
||||
public ushort Count { get; set; }
|
||||
public uint LowId { get; set; }
|
||||
public uint HighId { get; set; }
|
||||
|
||||
public void Read(BinaryReader br)
|
||||
{
|
||||
Flags = (AlAarArchiveFlags)br.ReadByte();
|
||||
Count = br.ReadUInt16();
|
||||
LowId = br.ReadUInt32();
|
||||
HighId = br.ReadUInt32();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue