You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
279 B
19 lines
279 B
11 years ago
|
package mightypork.rogue.display.constraints;
|
||
|
|
||
11 years ago
|
|
||
11 years ago
|
import mightypork.utils.math.coord.Rect;
|
||
|
|
||
|
|
||
11 years ago
|
/**
|
||
11 years ago
|
* Bounding box provider - context for {@link Constraint}
|
||
11 years ago
|
*
|
||
|
* @author MightyPork
|
||
|
*/
|
||
11 years ago
|
public interface Bounding {
|
||
11 years ago
|
|
||
11 years ago
|
/**
|
||
|
* @return bounding rectangle
|
||
|
*/
|
||
11 years ago
|
public Rect getRect();
|
||
|
}
|