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