using System.Collections.Generic;
using System.IO;
namespace ACE.DatLoader.FileTypes
{
public class SpellSetTiers : IUnpackable
{
///
/// A list of spell ids that are active in the spell set tier
///
public List Spells = new List();
public void Unpack(BinaryReader reader)
{
Spells.Unpack(reader);
}
}
}