Rogue: Savage Rats, a retro-themed dungeon crawler
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.
 
 
rogue-savage-rats/src/mightypork/utils/math/coord/SynthCoord2D.java

25 lines
432 B

package mightypork.utils.math.coord;
import mightypork.utils.math.constraints.NumberConstraint;
/**
* 2D coord for anonymous implementations.<br>
* Operations yield a new {@link MutableCoord} with the result.
*
* @author MightyPork
*/
public abstract class SynthCoord2D extends VecView {
@Override
public abstract double x();
@Override
public abstract double y();
@Override
public double z()
{
return 0;
}
}