Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LukeMcNemee/java-project
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Anty0/java-project
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Apr 13, 2015

  1. add class point

    xminks committed Apr 13, 2015
    Copy the full SHA
    dd5efae View commit details
  2. rename class point

    xminks committed Apr 13, 2015
    Copy the full SHA
    dc170c9 View commit details
Showing with 62 additions and 0 deletions.
  1. +31 −0 TicTacToeClient/src/Client/Point.java
  2. +31 −0 TicTacToeClient/src/Client/point.java
31 changes: 31 additions & 0 deletions TicTacToeClient/src/Client/Point.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Client;

/**
* x je souřadnice, která vede vodorovně mřížkou
* y je souřadnice, která vede svisle mřížkou
* @author xminks
*/
public class Point {

private final int x;
private final int y;

public Point(int x, int y) {
this.x = x;
this.y = y;
}

public int getX() {
return x;
}

public int getY() {
return y;
}

}
31 changes: 31 additions & 0 deletions TicTacToeClient/src/Client/point.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Client;

/**
* x je souřadnice, která vede vodorovně mřížkou
* y je souřadnice, která vede svisle mřížkou
* @author xminks
*/
public class point {

private final int x;
private final int y;

public point(int x, int y) {
this.x = x;
this.y = y;
}

public int getX() {
return x;
}

public int getY() {
return y;
}

}