package mightypork.utils.math.constraints.builder; import mightypork.utils.math.constraints.RectBound; public class Bounds { public static class RectBB { private final RectBound parent; public RectBB(RectBound parent) { this.parent = parent; } } }