Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/Graphics/Effects/ITiledMapEffect.cs
T
Lucas Girouard-StranksandDylan Wilson 3a164d5385 Tiled Fix (#349)
* Tiled fix.

* Remove bat file.
2017-03-05 09:18:11 +10:00

10 lines
210 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace MonoGame.Extended.Graphics.Effects
{
public interface ITiledMapEffect : IEffectMatrices, ITextureEffect
{
float Alpha { get; set; }
}
}