mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-04 08:40:51 +08:00
22 lines
407 B
C#
22 lines
407 B
C#
namespace WpfAnimatedGif.Decoding
|
|
{
|
|
internal class GifTrailer : GifBlock
|
|
{
|
|
internal const int TrailerByte = 0x3B;
|
|
|
|
private GifTrailer()
|
|
{
|
|
}
|
|
|
|
internal override GifBlockKind Kind
|
|
{
|
|
get { return GifBlockKind.Other; }
|
|
}
|
|
|
|
internal static GifTrailer ReadTrailer()
|
|
{
|
|
return new GifTrailer();
|
|
}
|
|
}
|
|
}
|