aboutsummaryrefslogtreecommitdiff
path: root/V3/Widgets/IImageWidget.cs
blob: 5a5b368d35ccb6bc77f9fbb49386c8d2e8765e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Microsoft.Xna.Framework.Graphics;

namespace V3.Widgets
{
    /// <summary>
    /// A widget that displays an image.
    /// </summary>
    public interface IImageWidget : IWidget
    {
        /// <summary>
        /// The image to display.
        /// </summary>
        Texture2D Image { get; set; }
    }
}