using System.IO;
namespace UnityEditor.U2D.Aseprite
{
    /// 
    /// Parsed representation of an Aseprite Old Palette (no. 2) chunk.
    /// Not supported yet.
    /// 
    internal class OldPaletteChunk2 : BaseChunk
    {
        /// 
        public override ChunkTypes chunkType => ChunkTypes.OldPalette2;
        internal OldPaletteChunk2(uint chunkSize) : base(chunkSize) { }
        /// 
        /// Read and store the chunk data.
        /// 
        /// The active binary reader of the file.
        protected override void InternalRead(BinaryReader reader) { }
    }
}