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