summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Graphics/Effects/ITextureEffect.cs
blob: ea2ef0b0fa7413989c2c017f547e05046d11c3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Microsoft.Xna.Framework.Graphics;

namespace MonoGame.Extended.Graphics.Effects
{
    /// <summary>
    ///     Defines an <see cref="Effect" /> that uses a <see cref="Texture2D" />.
    /// </summary>
    public interface ITextureEffect
    {
        /// <summary>
        ///     Gets or sets the <see cref="Texture2D" />.
        /// </summary>
        /// <value>
        ///     The <see cref="Texture2D" />.
        /// </value>
        Texture2D Texture { get; set; }
    }
}