using Microsoft.Xna.Framework;

namespace Kav
{
    public interface ICullable
    {
        BoundingBox BoundingBox { get; }
    }
}