using System.Collections.Generic;
using System.IO;
using ACE.DatLoader.Entity;
namespace ACE.DatLoader.FileTypes
{
///
/// These are client_portal.dat files starting with 0x12.
///
[DatFileType(DatFileType.Scene)]
public class Scene : FileType
{
public List Objects { get; } = new List();
public override void Unpack(BinaryReader reader)
{
Id = reader.ReadUInt32();
Objects.Unpack(reader);
}
}
}