package mightypork.utils.math.constraints.num; /** * Interface for something that has/is a Num. Num itself implements it as well. * * @author Ondřej Hruška (MightyPork) */ public interface NumBound { /** * @return the Num value */ Num getNum(); }