pre-final

This commit is contained in:
2025-11-01 11:54:51 +01:00
parent afd201f250
commit 63475a0c07
4 changed files with 45 additions and 41 deletions

View File

@@ -17,8 +17,7 @@ public class Chip {
public Color color;
public int relativeX;
public int relativeY;
public double absoluteX;
public double absoluteY;
@@ -30,11 +29,10 @@ public class Chip {
public int id;
public Chip(int id, int relX, int relY,double absX, double absY, Color color, Game game) {
public Chip(int id,double absX, double absY, Color color, Game game) {
this.id = id;
relativeX = relX;
relativeY = relY;
absoluteX = absX;
absoluteY = absY;