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
291 B
19 lines
291 B
11 years ago
|
package mightypork.utils.math.constraints;
|
||
11 years ago
|
|
||
|
|
||
|
/**
|
||
|
* Constraint that provides size
|
||
|
*
|
||
|
* @author MightyPork
|
||
|
*/
|
||
|
public abstract class NumConstraint extends BaseConstraint {
|
||
|
|
||
11 years ago
|
public NumConstraint(ConstraintContext context) {
|
||
11 years ago
|
super(context);
|
||
|
}
|
||
|
|
||
|
|
||
|
public abstract double getValue();
|
||
|
|
||
|
}
|