Kav/Geometry/Interfaces/ICullable.cs

11 lines
174 B
C#
Raw Normal View History

2020-12-07 03:36:00 +00:00
using Microsoft.Xna.Framework;
namespace Kav
{
public interface ICullable
{
BoundingBox BoundingBox { get; }
2020-12-11 00:02:13 +00:00
Matrix TransformMatrix { get; }
2020-12-07 03:36:00 +00:00
}
}