
function None () {
	
}

Class(None);

None.easeNone = function (t, b, c, d) {
	return c*t/d + b;
}

None.easeIn = function (t, b, c, d) {
	return c*t/d + b;
}

None.easeOut = function (t, b, c, d) {
	return c*t/d + b;
}

None.easeInOut = function (t, b, c, d) {
	return c*t/d + b;
}
