package universalelectricity.api.vector; /** Useful interface to define that an object has a 2D location. * * @author DarkGuardsman */ public interface IVector2 { double x(); double y(); }