package net.minecraft.src.weasel;

public class Utils {
	public static boolean isInRange(int checked, int from, int to) {
		return checked >= from && checked <= to;
	}
}
