Hinzufügen der Vorlage

This commit is contained in:
joachimschmidt557 2019-01-29 19:13:22 +01:00
parent 8a99189fb8
commit 8d00681b2c
68 changed files with 4731 additions and 0 deletions

View file

@ -0,0 +1,33 @@
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;
}
}