package mightypork.gamecore.util.math.constraints.num.proxy; import mightypork.gamecore.util.math.constraints.num.Num; /** * Numeric constraint * * @author Ondřej Hruška (MightyPork) */ public interface NumBound { /** * @return current value */ Num getNum(); }