No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PathChunk.cs 445B

12345678910111213141516
  1. using System.IO;
  2. namespace UnityEditor.U2D.Aseprite
  3. {
  4. /// <summary>
  5. /// Parsed representation of an Aseprite Path chunk.
  6. /// </summary>
  7. /// <note>Not supported yet.</note>
  8. internal class PathChunk : BaseChunk
  9. {
  10. public override ChunkTypes chunkType => ChunkTypes.Path;
  11. internal PathChunk(uint chunkSize) : base(chunkSize) { }
  12. protected override void InternalRead(BinaryReader reader) { }
  13. }
  14. }