namespace BansheeEngine { /// /// Bounds represented by an axis aligned box and a sphere. /// public struct Bounds { /// /// Creates new bounds. /// /// Axis aligned box representation of the bounds. /// Sphere representation of the bounds. public Bounds(AABox box, Sphere sphere) { Box = box; Sphere = sphere; } /// /// Axis aligned box representation of the bounds. /// public AABox Box; /// /// Sphere representation of the bounds. /// public Sphere Sphere; } }