This repository has been archived on 2026-05-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
CSE-123/c2/divide_canvas/Point.java
2026-05-20 16:20:45 -07:00

11 lines
140 B
Java

public class Point {
public int x;
public int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
}