mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +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; }
|
|
}
|
|
}
|