package mightypork.utils.math.constraints; import mightypork.utils.math.rect.RectValue; /** * Rect constraint (ie. region) * * @author MightyPork */ public interface RectConstraint { /** * @return rect region */ RectValue getRect(); }