mirror of
https://github.com/Phantop/LADXHD.git
synced 2025-09-04 20:57:37 +00:00
24 lines
604 B
C#
24 lines
604 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|