ict.lixian.three/Assets/APNG/LibAPNG/Chunks/OtherChunk.cs

26 lines
429 B
C#

using System.IO;
namespace LibAPNG
{
public class OtherChunk : Chunk
{
public OtherChunk(byte[] bytes)
: base(bytes)
{
}
public OtherChunk(MemoryStream ms)
: base(ms)
{
}
public OtherChunk(Chunk chunk)
: base(chunk)
{
}
protected override void ParseData(MemoryStream ms)
{
}
}
}