pawn moves check

This commit is contained in:
CT
2026-04-23 13:10:37 -05:00
parent 7f9cdfea63
commit 677eae9119
9 changed files with 85 additions and 8 deletions

8
Position.java Normal file
View File

@@ -0,0 +1,8 @@
public class Position {
int x, y;
public Position(int x, int y) {
this.x = x;
this.y = y;
}
}