18 lines
347 B
C#
Executable File
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);
|
|
}
|
|
}
|