LADXHD/InGame/GameObjects/Base/Components/BlurDrawComponent.cs

24 lines
604 B
C#
Raw Permalink Normal View History

2023-12-14 22:21:22 +00:00
using Microsoft.Xna.Framework.Graphics;
using ProjectZ.InGame.Things;
namespace ProjectZ.InGame.GameObjects.Base.Components
{
public class BlurDrawComponent : Component
{
public delegate void DrawTemplate(SpriteBatch spriteBatch);
public DrawTemplate Draw;
public new static int Index = 16;
public static int Mask = 0x01 << Index;
public int Layer = Values.LightLayer0;
protected BlurDrawComponent() { }
public BlurDrawComponent(DrawTemplate draw)
{
Draw = draw;
}
}
}