mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
11 lines
258 B
C#
11 lines
258 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
using MonoGame.Extended.Graphics.Effects;
|
|
|
|
namespace MonoGame.Extended.Tiled.Graphics.Effects
|
|
{
|
|
public interface ITiledMapEffect : IEffectMatrices, ITextureEffect
|
|
{
|
|
float Alpha { get; set; }
|
|
}
|
|
}
|