mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
* Fix BoundingRect unit tests. * Create `graphics` library.
18 lines
493 B
C#
18 lines
493 B
C#
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 ITexture2DEffect
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="Texture2D" />.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The <see cref="Texture2D" />.
|
|
/// </value>
|
|
Texture2D Texture { get; set; }
|
|
}
|
|
} |