Merge branch 'master' into seenCommand

# Conflicts:
#	src/main/java/com/alttd/commandManager/CommandManager.java
This commit is contained in:
2022-09-29 19:06:30 +02:00
36 changed files with 1971 additions and 108 deletions
+21
View File
@@ -0,0 +1,21 @@
package com.alttd.util;
public class Pair<X, Y> {
private final X x;
private final Y y;
public Pair(X x, Y y) {
this.x = x;
this.y = y;
}
public X getValue0() {
return x;
}
public Y getValue1() {
return y;
}
}