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