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/SynthCoord3D.java

23 lines
381 B

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