diff --git a/src/Map.java b/src/Map.java new file mode 100644 index 0000000..0822ff2 --- /dev/null +++ b/src/Map.java @@ -0,0 +1,19 @@ +import java.awt.Point; + +public class Map { + private Circuit[][] map; + private Point[] pathMap; + + public Map(Circuit[][] map) { + this.map = map; + this.buildPath(); + } + + private boolean buildPath() { + return false; + } + + public Circuit getElement(int x, int y) { + return map[y][x]; + } +}