Files
2012-09-29 22:04:29 +02:00

18 lines
347 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Krypton.Common;
namespace Krypton.Lights
{
public interface ILight2D
{
BoundingRect Bounds { get; }
void Draw(KryptonRenderHelper renderHelper, List<ShadowHull> hulls);
}
}