Remade item and tile basic system.

Still not funcitonal but the shape is final. Sort of.
This commit is contained in:
Ondřej Hruška
2014-04-19 18:32:14 +02:00
parent ccbc95c74a
commit 65ad97994b
176 changed files with 1561 additions and 1616 deletions
+3 -2
View File
@@ -31,7 +31,8 @@ public class Pair<T1, T2> {
* @param first 1st object
* @param second 2nd object
*/
public Pair(T1 first, T2 second) {
public Pair(T1 first, T2 second)
{
this.first = first;
this.second = second;
}
@@ -68,7 +69,7 @@ public class Pair<T1, T2> {
final Pair<?, ?> t = (Pair<?, ?>) obj;
return Calc.areObjectsEqual(first, t.first) && Calc.areObjectsEqual(second, t.second);
return Calc.areEqual(first, t.first) && Calc.areEqual(second, t.second);
}