MyBook/Library/PackageCache/com.unity.2d.aseprite@1.1.6/Editor/Aseprite/Chunks/OldPaletteChunk2.cs

23 lines
679 B
C#
Raw Normal View History

2025-03-22 14:59:41 +08:00
using System.IO;
namespace UnityEditor.U2D.Aseprite
{
/// <summary>
/// Parsed representation of an Aseprite Old Palette (no. 2) chunk.
/// Not supported yet.
/// </summary>
internal class OldPaletteChunk2 : BaseChunk
{
/// <inheritdoc />
public override ChunkTypes chunkType => ChunkTypes.OldPalette2;
internal OldPaletteChunk2(uint chunkSize) : base(chunkSize) { }
/// <summary>
/// Read and store the chunk data.
/// </summary>
/// <param name="reader">The active binary reader of the file.</param>
protected override void InternalRead(BinaryReader reader) { }
}
}