using Microsoft.Xna.Framework.Graphics; namespace MonoGame.Extended.Graphics.Effects { /// /// Defines an that uses a . /// public interface ITextureEffect { /// /// Gets or sets the . /// /// /// The . /// Texture2D Texture { get; set; } } }