// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageProcessorCore { using System; /// /// Represents a single frame in a animation. /// public class ImageFrame : ImageBase { /// /// Initializes a new instance of the class. /// public ImageFrame() { } /// /// Initializes a new instance of the class. /// /// /// The other to create this instance from. /// /// /// Thrown if the given is null. /// public ImageFrame(ImageFrame other) : base(other) { } } }