Bounds.cs 245 B

1234567891011121314
  1. namespace BansheeEngine
  2. {
  3. public struct Bounds
  4. {
  5. public Bounds(AABox box, Sphere sphere)
  6. {
  7. Box = box;
  8. Sphere = sphere;
  9. }
  10. public AABox Box;
  11. public Sphere Sphere;
  12. }
  13. }