package téglalap;

/**
 *
 * @author Daniel "3ICE" Berezvai
 */
public class Coordinate {

  public static Coordinate make(int x, int y) {
    return new Coordinate(x, y);
  }
  public double x, y;

  public Coordinate(double x, double y) {
    this.x = x;
    this.y = y;
  }
}
