mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-25 16:35:33 +00:00
10 lines
210 B
C#
10 lines
210 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace MonoGame.Extended.Graphics.Effects
|
|
{
|
|
public interface ITiledMapEffect : IEffectMatrices, ITextureEffect
|
|
{
|
|
float Alpha { get; set; }
|
|
}
|
|
}
|