arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.aseprite@f6e7e126ac6d/Editor/Aseprite/Chunks/NoneChunk.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

19 lines
479 B
C#

using System.IO;
namespace UnityEditor.U2D.Aseprite
{
/// <summary>
/// Empty default chunk.
/// </summary>
internal class NoneChunk : BaseChunk
{
internal NoneChunk(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) { }
}
}