//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageProcessorCore
{
///
/// Represents a single frame in a animation.
///
/// The pixel format.
/// The packed format. uint, long, float.
public interface IImageFrame : IImageBase
where TColor : IPackedVector
where TPacked : struct
{
}
}