Real rename
This commit is contained in:
parent
aa3dd87076
commit
cafb36cb26
68 changed files with 0 additions and 0 deletions
|
|
@ -1,33 +0,0 @@
|
|||
package base;
|
||||
|
||||
/**
|
||||
* @author Philipp Imperatori, Nils Nedderhut, Louis Neumann
|
||||
* <p>
|
||||
* Version 1.0
|
||||
*/
|
||||
public class Vector<T> {
|
||||
|
||||
private T x;
|
||||
private T y;
|
||||
|
||||
public Vector(T x, T y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
public T getX() {
|
||||
return this.x;
|
||||
}
|
||||
|
||||
public T getY() {
|
||||
return this.y;
|
||||
}
|
||||
|
||||
public void setX(T x) {
|
||||
this.x = x;
|
||||
}
|
||||
|
||||
public void setY(T y) {
|
||||
this.y = y;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue