skeleton: Added initial skeleton files

This commit is contained in:
2023-03-15 11:38:13 +11:00
parent b6dccbd506
commit d2fc9cc781
8 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package comp1110.ass2.skeleton;
public class island {
public final int width;
public final int height;
public tile[][] tiles;
public final int score;
public island(int width, int height, int score) {
this.width = width;
this.height = height;
this.score = score;
this.tiles = new tile[width][height];
}
}