Krypton lighting engine

http://krypton.codeplex.com/
This commit is contained in:
Simon Holmberg
2012-09-29 22:04:29 +02:00
parent 57789c4600
commit a056127f7c
21 changed files with 2977 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
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);
}
}