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